diff --git a/package.json b/package.json index 8dfe25f05..fbfb73316 100755 --- a/package.json +++ b/package.json @@ -22,7 +22,7 @@ "lint": "biome check", "lint-monorepo": "bunx sherif@latest", "format": "biome format --write .", - "verify": "bun run format && bun run build && bun run test && bun run test:coverage && bun run lint && bun run lint-monorepo && bun vitest run scripts/typedoc-plugin-evolu.test.mts", + "verify": "bun run format && bun run build && bun run test && bun run test:coverage && bun run lint && bun run lint-monorepo", "clean": "turbo clean && rimraf node_modules bun.lock .turbo out", "version": "changeset version", "release": "bun run build && changeset publish", diff --git a/packages/common/test/local-first/Protocol.test.ts b/packages/common/test/local-first/Protocol.test.ts index e7dd580f0..f4fbad76c 100644 --- a/packages/common/test/local-first/Protocol.test.ts +++ b/packages/common/test/local-first/Protocol.test.ts @@ -1268,7 +1268,9 @@ describe("E2E sync", () => { `); }); - it("client and relay each have a random half of the data", async () => { + // Increased timeout for CI environments where this E2E sync test with large data sets + // can take longer than the default 5s due to storage operations and reconciliation + it("client and relay each have a random half of the data", { timeout: 15000 }, async () => { await using run = testCreateRunner(); const [clientStorage, relayStorage] = await createStorages();