From 20f823d74e1f7a30a860bf27938e558be6668999 Mon Sep 17 00:00:00 2001 From: Philip Harrison Date: Mon, 26 Jul 2021 16:18:31 +0100 Subject: [PATCH] Add tests --- __tests__/image-service.test.ts | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 __tests__/image-service.test.ts 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') + }) +})