diff --git a/zx/lib/src/scwrypts/scwrypts.test.ts b/zx/lib/src/scwrypts/scwrypts.test.ts index 2b1eda6..ee529b8 100644 --- a/zx/lib/src/scwrypts/scwrypts.test.ts +++ b/zx/lib/src/scwrypts/scwrypts.test.ts @@ -64,11 +64,9 @@ afterEach(() => { }); describe('exact lookup', () => { - let output; beforeEach(async () => { sample.spy.getScwryptsLookup.mockReturnValue(sample.lookup.exact); - - output = await scwrypts(sample.options); + await scwrypts(sample.options); }); test('gets the correct lookup', () => { @@ -98,7 +96,6 @@ describe('exact lookup', () => { describe('patterns lookup', () => { beforeEach(async () => { sample.spy.getScwryptsLookup.mockReturnValue(sample.lookup.patterns); - await scwrypts(sample.options); });