Skip to content

Commit

Permalink
test: reduce insert count
Browse files Browse the repository at this point in the history
  • Loading branch information
marcus-pousette committed Jul 28, 2024
1 parent 1d1274c commit 8b0cac0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/programs/data/shared-log/test/replicate.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -488,7 +488,7 @@ describe("redundancy", () => {
it("only sends entries once, 2 peers dynamic", async () => {
db1 = await session.peers[0].open(new EventStore<string>());
await db1.log.replicate();
let count = 1000;
let count = 10;
for (let i = 0; i < count; i++) {
await db1.add("hello " + i, { meta: { next: [] } });
}
Expand Down

0 comments on commit 8b0cac0

Please sign in to comment.