From 268f2377f27d288a1e66d93423ad5b7203a38f3f Mon Sep 17 00:00:00 2001 From: Nick Cipollo Date: Fri, 26 Nov 2021 17:26:50 -0500 Subject: [PATCH] Fix test which is failing when pushing a tag --- __tests__/Inputs.test.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/__tests__/Inputs.test.ts b/__tests__/Inputs.test.ts index 8cebcc2..e3c1794 100644 --- a/__tests__/Inputs.test.ts +++ b/__tests__/Inputs.test.ts @@ -294,6 +294,7 @@ describe('Inputs', () => { expect(inputs.tag).toBe('sha-tag') }) it('throws if no tag', () => { + context.ref = "" expect(() => inputs.tag).toThrow() }) })