Skip to content

Commit 1e16b4b

Browse files
committed
Crazy attempt to test if there is timeout problem in appveyor env
1 parent e26e1f6 commit 1e16b4b

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

test/Client.test.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,15 +38,17 @@ describe('Client code', () => {
3838
},
3939
};
4040
addEntries(config, options);
41-
helper.start(config, options, done);
41+
helper.start(config, options, () => {
42+
setTimeout(done, 15000);
43+
});
4244
});
4345

4446
afterAll(helper.close);
4547

4648
describe('behind a proxy', () => {
4749
let proxy;
4850

49-
jest.setTimeout(30000);
51+
jest.setTimeout(50000);
5052

5153
beforeAll(() => {
5254
proxy = startProxy(9000);

0 commit comments

Comments
 (0)