Compare commits

...

2 Commits

Author SHA1 Message Date
ef79734fac ok 2024-02-20 22:27:41 -07:00
13ce0c4bac fix output 2024-02-20 22:22:39 -07:00
2 changed files with 2 additions and 5 deletions

View File

@ -25,7 +25,7 @@ jobs:
path: ~/scwrypts
- run: |
: \
&& pip install -e . \
&& pip install . .[test] \
&& pytest \
;

View File

@ -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);
});