From 13ce0c4bac6a8ae637a27827715cc44df9ff9ecf Mon Sep 17 00:00:00 2001 From: yage Date: Tue, 20 Feb 2024 22:22:39 -0700 Subject: [PATCH] fix output --- zx/lib/src/scwrypts/scwrypts.test.ts | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) 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); });