fix(core): update

This commit is contained in:
Philipp Kunz 2019-04-09 12:35:27 +02:00
parent 463b4db091
commit 1f86bb0eb4
2 changed files with 3 additions and 4 deletions

View File

@ -31,9 +31,11 @@ tap.test('should create a client', async tools => {
});
tap.test('should terminate the smartipc process', async tools => {
await tools.delayFor(1000);
await clientIpc.stop();
await serverIpc.stop();
tools.delayFor(2000).then(() => {
process.exit(0);
});
});
tap.start();

View File

@ -70,9 +70,6 @@ export class SmartIpc {
case 'client':
break;
}
plugins.smartdelay.delayFor(2000).then(() => {
process.exit(0);
});
}
/**