fix(core): update

This commit is contained in:
2024-03-13 22:07:58 +01:00
parent a8beda7597
commit 0ef865ea9f
7 changed files with 152 additions and 104 deletions

View File

@ -41,4 +41,9 @@ const test6 = tap.skip.test('my 6th test -> should fail after 1000ms', async (to
await tools.delayFor(2000);
});
const test7 = tap.test('my 7th test -> should print a colored string', async (tools) => {
const cs = await tools.coloredString('hello', 'red', 'cyan');
console.log(cs);
});
tap.start();