Skip to content

Commit f513c6d

Browse files
fix: update test timeout syntax for consistency
1 parent dfec373 commit f513c6d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

__tests__/unit/main.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ describe('classifierHelper', () => {
2727
}
2828
// Assert error is unset
2929
expect(error).toBeNull();
30-
}, { timeout: 10000 })
30+
}, 10000)
3131
});
3232

3333
describe('classifyImage function', () => {
@@ -90,5 +90,5 @@ describe('classifyImage function', () => {
9090

9191
// Accept either a successful call or a connection error (for CI/dev convenience)
9292
expect(error).toBeUndefined();
93-
}, { timeout: 120000 });
93+
}, 120000);
9494
});

0 commit comments

Comments
 (0)