Skip to content

Commit 4d48bbd

Browse files
committed
chore: fixup testnet
1 parent 76de697 commit 4d48bbd

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.mocharc.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module.exports = {
22
require: 'tooling/babel-register.js',
33
recursive: true,
44
extension: '.js,.ts',
5-
timeout: process.env.NETWORK ? '400s' : '40s',
5+
timeout: process.env.NETWORK ? '500s' : '40s',
66
ignore: 'test/environment/**',
77
exit: true // TODO: fix in state channel tests
88
}

test/integration/MiddlewareSubscriber.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ describe('MiddlewareSubscriber', () => {
6565
ms.webSocket.addEventListener('message', resolve);
6666
});
6767
})(),
68-
pause(2000).then(() => { throw new Error('Timeout'); }),
68+
pause(4000).then(() => { throw new Error('Timeout'); }),
6969
]);
7070
}
7171

test/integration/oracle.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ describe('Oracle', () => {
5454
.then(() => oracle.postQuery('{"city": "Berlin4"}'));
5555
});
5656

57-
const timeout = networkId === 'ae_devnet' ? 8000 : 600000;
57+
const timeout = networkId === 'ae_devnet' ? 8000 : 700000;
5858
it('Poll for response for query without response', async () => {
5959
const query = await oracle.postQuery('{"city": "Berlin"}', { queryTtlValue: 1 });
6060
await query.pollForResponse()

0 commit comments

Comments
 (0)