You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
58 lines
1.4 KiB
JavaScript
58 lines
1.4 KiB
JavaScript
/* eslint-disable func-names */
|
|
/* eslint-disable import/no-extraneous-dependencies */
|
|
const { afterEach, beforeEach, describe, it } = require('mocha');
|
|
|
|
const common = require('./common');
|
|
|
|
describe('Message Syncing', function() {
|
|
let app;
|
|
let app2;
|
|
let app3;
|
|
this.timeout(60000);
|
|
this.slow(15000);
|
|
|
|
beforeEach(async () => {
|
|
// await common.killallElectron();
|
|
await common.stopStubSnodeServer();
|
|
|
|
const app1Props = {
|
|
mnemonic: common.TEST_MNEMONIC1,
|
|
displayName: common.TEST_DISPLAY_NAME1,
|
|
stubSnode: true,
|
|
};
|
|
|
|
const app2Props = {
|
|
mnemonic: common.TEST_MNEMONIC2,
|
|
displayName: common.TEST_DISPLAY_NAME2,
|
|
stubSnode: true,
|
|
};
|
|
|
|
const app3Props = {
|
|
mnemonic: common.TEST_MNEMONIC3,
|
|
displayName: common.TEST_DISPLAY_NAME3,
|
|
stubSnode: true,
|
|
};
|
|
|
|
[app, app2, app3] = await Promise.all([
|
|
common.startAndStub(app1Props),
|
|
common.startAndStubN(app2Props, 2),
|
|
common.startAndStubN(app3Props, 3),
|
|
]);
|
|
});
|
|
|
|
afterEach(async () => {
|
|
await common.killallElectron();
|
|
await common.stopStubSnodeServer();
|
|
});
|
|
|
|
it('message syncing between linked devices', async () => {
|
|
await common.linkApp2ToApp(app, app2);
|
|
});
|
|
|
|
it('unlink two devices', async () => {
|
|
await common.linkApp2ToApp(app, app2);
|
|
await common.timeout(1000);
|
|
await common.triggerUnlinkApp2FromApp(app, app2);
|
|
});
|
|
});
|