We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ff1b1b5 + b0db0bf commit c201cb2Copy full SHA for c201cb2
src/test/lib/utils/time.test.ts
@@ -4,7 +4,7 @@ import { delay } from '$lib/utils/time';
4
describe('Delay', () => {
5
it('expected to be resolved after the specified delay', async () => {
6
const start = performance.now();
7
- const milliseconds = 90;
+ const milliseconds = 80; // Increased threshold for CI environment reliability.
8
await delay(milliseconds);
9
const end = performance.now();
10
0 commit comments