fix(core): update

This commit is contained in:
2019-08-22 13:20:41 +02:00
parent b39f607e63
commit 3ddb4c4c75
6 changed files with 54 additions and 20 deletions

View File

@ -11,6 +11,10 @@ tap.test('should start the testproxy', async () => {
await testProxy.start();
});
tap.test('should wait for 5 seconds', async (tools) => {
await tools.delayFor(5000);
});
tap.test('should close the testproxy', async () => {
await testProxy.stop();
});