fix(core): update

This commit is contained in:
2019-05-16 18:48:45 +02:00
parent a34609a53f
commit 00321467d9
8 changed files with 103 additions and 53 deletions

View File

@ -1,8 +1,12 @@
import { expect, tap } from '@pushrocks/tapbundle';
import * as smartexit from '../ts/index'
import * as smartexit from '../ts/index';
tap.test('first test', async () => {
console.log(smartexit.standardExport)
})
smartexit;
});
tap.start()
tap.test('should end processes upon SIGINT', async tools => {
await tools.delayFor(5000);
});
tap.start();