Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
4 changes: 3 additions & 1 deletion packages/common/test/local-first/Protocol.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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();

Expand Down