Fix case sensitive image in test

This commit is contained in:
Ferenc Hammerl
2022-06-03 06:56:26 -07:00
parent 1e49f4ba5b
commit c2f9b10f4d

View File

@@ -4,7 +4,7 @@ jest.useRealTimers()
describe('container pull', () => {
it('should fail', async () => {
const arg = { image: 'doesNotExist' }
const arg = { image: 'does-not-exist' }
await expect(containerPull(arg.image, '')).rejects.toThrow()
})
it('should succeed', async () => {