|
|
|
@ -21,22 +21,18 @@ describe('Sync Message Utils', () => {
|
|
|
|
|
|
|
|
|
|
// Fill half with secondaries, half with primaries
|
|
|
|
|
const numConversations = 20;
|
|
|
|
|
const primaryConversations = new Array(numConversations / 2)
|
|
|
|
|
.fill({})
|
|
|
|
|
.map(
|
|
|
|
|
() =>
|
|
|
|
|
new TestUtils.MockConversation({
|
|
|
|
|
type: TestUtils.MockConversationType.Primary,
|
|
|
|
|
})
|
|
|
|
|
);
|
|
|
|
|
const secondaryConversations = new Array(numConversations / 2)
|
|
|
|
|
.fill({})
|
|
|
|
|
.map(
|
|
|
|
|
() =>
|
|
|
|
|
new TestUtils.MockConversation({
|
|
|
|
|
type: TestUtils.MockConversationType.Secondary,
|
|
|
|
|
})
|
|
|
|
|
);
|
|
|
|
|
const primaryConversations = new Array(numConversations / 2).fill({}).map(
|
|
|
|
|
() =>
|
|
|
|
|
new TestUtils.MockConversation({
|
|
|
|
|
type: TestUtils.MockConversationType.Primary,
|
|
|
|
|
})
|
|
|
|
|
);
|
|
|
|
|
const secondaryConversations = new Array(numConversations / 2).fill({}).map(
|
|
|
|
|
() =>
|
|
|
|
|
new TestUtils.MockConversation({
|
|
|
|
|
type: TestUtils.MockConversationType.Secondary,
|
|
|
|
|
})
|
|
|
|
|
);
|
|
|
|
|
const conversations = [...primaryConversations, ...secondaryConversations];
|
|
|
|
|
|
|
|
|
|
const sandbox = sinon.createSandbox();
|
|
|
|
|