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 2f9b436 commit 26af266Copy full SHA for 26af266
deltachat-jsonrpc/typescript/test/online.ts
@@ -64,13 +64,15 @@ describe("online tests", function () {
64
await dc.rpc.setConfig(accountId1, "addr", account1.email);
65
await dc.rpc.setConfig(accountId1, "mail_pw", account1.password);
66
await dc.rpc.configure(accountId1);
67
+ await waitForEvent(dc, "ImapInboxIdle", accountId1);
68
69
accountId2 = await dc.rpc.addAccount();
70
await dc.rpc.batchSetConfig(accountId2, {
71
addr: account2.email,
72
mail_pw: account2.password,
73
});
74
await dc.rpc.configure(accountId2);
75
+ await waitForEvent(dc, "ImapInboxIdle", accountId2);
76
accountsConfigured = true;
77
78
0 commit comments