fix(core): update

This commit is contained in:
Philipp Kunz 2022-03-29 13:18:09 +02:00
parent eab145e736
commit ae377b185e

View File

@ -27,7 +27,12 @@ tap.test('first test', async (tools) => {
hithere: 'hello', hithere: 'hello',
}); });
console.log(JSON.stringify(result2)); */ console.log(JSON.stringify(result2)); */
}); });
tap.test('should end on nodejs', async (toolsArg) => {
if (globalThis.process) {
toolsArg.delayFor(2000).then(() => globalThis.process.exit(0));
}
})
tap.start(); tap.start();