Skip to content

Commit

Permalink
fix perf test failing in github CI
Browse files Browse the repository at this point in the history
  • Loading branch information
jmeistrich committed Feb 8, 2024
1 parent 4822a59 commit 6a48dd8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/tests.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1955,7 +1955,7 @@ describe('Deep changes keep listeners', () => {
obs.arr.splice(1, 1);
const then = performance.now();

expect(then - now).toBeLessThan(30);
expect(then - now).toBeLessThan(process.env.CI === 'true' ? 60 : 30);
});
});
describe('Delete', () => {
Expand Down

0 comments on commit 6a48dd8

Please sign in to comment.