We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3cbfc8f commit 271737cCopy full SHA for 271737c
1 file changed
packages/react/tests/profile.test.tsx
@@ -7,7 +7,7 @@ import { PowerSyncContext } from '../src/hooks/PowerSyncContext';
7
import { useQuery } from '../src/hooks/watched/useQuery';
8
import { useWatchedQuerySubscription } from '../src/hooks/watched/useWatchedQuerySubscription';
9
10
-let skipTests = true;
+let skipTests = false;
11
/**
12
* This does not run as part of all tests. Enable this suite manually to run performance tests.
13
*
@@ -356,7 +356,7 @@ const testsInsertsCompare = async (options: {
356
return result as TestsInsertsCompareResult;
357
};
358
359
-describe.skipIf(skipTests)('Performance', { timeout: 90_000 }, () => {
+describe.skipIf(skipTests)('Performance', { timeout: Infinity }, () => {
360
beforeEach(() => {
361
vi.clearAllMocks();
362
});
0 commit comments