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 5e7c3d5 commit cd3fec6Copy full SHA for cd3fec6
src/component/counter.test.ts
@@ -47,15 +47,18 @@ describe("counter", () => {
47
});
48
49
50
-fcTest.prop({
51
- updates: fc.array(
52
- fc.record({
53
- v: fc.integer({ min: -10000, max: 10000 }).map((i) => i / 100),
54
- key: fc.string(),
55
- shards: fc.option(fc.integer({ min: 1, max: 100 })),
56
- }),
57
- ),
58
-})(
+fcTest.prop(
+ {
+ updates: fc.array(
+ fc.record({
+ v: fc.integer({ min: -10000, max: 10000 }).map((i) => i / 100),
+ key: fc.string(),
+ shards: fc.option(fc.integer({ min: 1, max: 100 })),
+ }),
+ ),
59
+ },
60
+ { numRuns: 10 },
61
+)(
62
"updates to counter should match in-memory counter which ignores sharding",
63
async ({ updates }) => {
64
const t = convexTest(schema, modules);
0 commit comments