The groupsync test in measurements/perf-matrix.test.ts has two bugs that make it ineffective:
// Current implementation (lines 162-166)it(`groupsync-${i}(${populateSize})[${installationPerMember}]:sync a large group of ${i} members ${i}`, async () => { await newGroup.sync(); // Creator syncing their own just-created group const members = await newGroup.members(); expect(members.length).toBe(members.length); // Always true});
Describe the bug
The groupsync test in measurements/perf-matrix.test.ts has two bugs that make it ineffective:
Expected behavior
Steps to reproduce the bug