diff --git a/__tests__/image-service.test.ts b/__tests__/image-service.test.ts new file mode 100644 index 0000000..0188769 --- /dev/null +++ b/__tests__/image-service.test.ts @@ -0,0 +1,7 @@ +import {ImageService} from '../src/image-service' + +describe('ImageService', () => { + test('pulls the image from docker hub', async () => { + await ImageService.pullImage('hello-world') + }) +})