Skip to content

Commit 271737c

Browse files
update profile timeout
1 parent 3cbfc8f commit 271737c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/react/tests/profile.test.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { PowerSyncContext } from '../src/hooks/PowerSyncContext';
77
import { useQuery } from '../src/hooks/watched/useQuery';
88
import { useWatchedQuerySubscription } from '../src/hooks/watched/useWatchedQuerySubscription';
99

10-
let skipTests = true;
10+
let skipTests = false;
1111
/**
1212
* This does not run as part of all tests. Enable this suite manually to run performance tests.
1313
*
@@ -356,7 +356,7 @@ const testsInsertsCompare = async (options: {
356356
return result as TestsInsertsCompareResult;
357357
};
358358

359-
describe.skipIf(skipTests)('Performance', { timeout: 90_000 }, () => {
359+
describe.skipIf(skipTests)('Performance', { timeout: Infinity }, () => {
360360
beforeEach(() => {
361361
vi.clearAllMocks();
362362
});

0 commit comments

Comments
 (0)