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 e205363 commit 5745e7dCopy full SHA for 5745e7d
test/e2e/ClientMode.test.js
@@ -30,8 +30,10 @@ describe('clientMode', () => {
30
testServer.close(() => {
31
// make sure the client gets the close message
32
setTimeout(() => {
33
- expect(res).toMatchSnapshot();
34
- browser.close().then(done);
+ browser.close().then(() => {
+ expect(res).toMatchSnapshot();
35
+ done();
36
+ });
37
}, 1000);
38
});
39
}, 3000);
@@ -66,8 +68,10 @@ describe('clientMode', () => {
66
68
67
69
70
71
72
73
74
75
76
77
0 commit comments