diff --git a/src/__tests__/projectTagger.function.spec.js b/src/__tests__/projectTagger.function.spec.js index a55481d..b2f1978 100644 --- a/src/__tests__/projectTagger.function.spec.js +++ b/src/__tests__/projectTagger.function.spec.js @@ -55,6 +55,7 @@ describe("ProjectTagger Function", () => { expect(add).toHaveBeenCalledWith(CDK.TAG.STACK, "MOCK_STACK_NAME"); }); it("Will not tag stackName if not passed", () => { + /* eslint-disable no-shadow */ const add = jest.fn(); const of = jest.fn(() => ({ add })); const cdk = { @@ -62,6 +63,7 @@ describe("ProjectTagger Function", () => { of, }, }; + /* eslint-enable no-shadow */ const response = projectTagger({ cdk, stack: "MOCK_STACK",