diff --git a/src/model/action.test.ts b/src/model/action.test.ts index d4a6591..6bea1f9 100644 --- a/src/model/action.test.ts +++ b/src/model/action.test.ts @@ -26,11 +26,4 @@ describe('Action', () => { expect(path.basename(actionFolder)).toStrictEqual('dist'); expect(fs.existsSync(actionFolder)).toStrictEqual(true); }); - - it('returns the docker file', () => { - const { dockerfile } = Action; - - expect(path.basename(dockerfile)).toStrictEqual('Dockerfile'); - expect(fs.existsSync(dockerfile)).toStrictEqual(true); - }); });