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.
1 parent 01c0967 commit 41705feCopy full SHA for 41705fe
tools/powersynctests/src/tests/queries.test.ts
@@ -605,7 +605,7 @@ export function registerBaseTests() {
605
await watched;
606
});
607
608
- it('10000 INSERTs', async () => {
+ it('1000 INSERTs', async () => {
609
let start = performance.now();
610
for (let i = 0; i < 1000; ++i) {
611
const n = randomIntFromInterval(0, 100000);
@@ -618,7 +618,7 @@ export function registerBaseTests() {
618
let end = performance.now();
619
let duration = end - start;
620
621
- expect(duration).lessThan(2000);
+ expect(duration).lessThan(4000);
622
623
624
// // TODO: Behaviour differs between RNQS and OP-sqlite. Might need to fix this one in the OP-sqlite package
0 commit comments