Swap to GraphQL and add logging (#83)

* swap to graphql

* add logs

* swap to group log

* fix test
This commit is contained in:
Oliver King
2022-07-11 10:12:11 -04:00
committed by GitHub
parent 6e32762c2e
commit 484a64052d
3 changed files with 40 additions and 36 deletions

View File

@ -74,12 +74,8 @@ describe('run.ts', () => {
expect(os.type).toBeCalled()
})
test('getLatestHelmVersion() - return the latest version of HELM', async () => {
try {
expect(await run.getLatestHelmVersion()).toBe('v3.8.0')
} catch (e) {
return e
}
test('getLatestHelmVersion() - return the stable version of HELM since its not authenticated', async () => {
expect(await run.getLatestHelmVersion()).toBe('v3.9.0')
})
test('walkSync() - return path to the all files matching fileToFind in dir', () => {