fix(core): Fix typos in package.json, update dependencies and update workflow.
This commit is contained in:
@ -45,4 +45,4 @@ const test6 = tap.skip.test('my 6th test -> should fail after 1000ms', async (to
|
||||
await tools.delayFor(100);
|
||||
});
|
||||
|
||||
tap.start();
|
||||
await tap.start();
|
||||
|
10
test/test.node.ts
Normal file
10
test/test.node.ts
Normal file
@ -0,0 +1,10 @@
|
||||
import { tap, expect } from '../ts/index.js';
|
||||
|
||||
import { tapNodeTools } from '../ts_node/index.js';
|
||||
|
||||
tap.test('should execure a command', async () => {
|
||||
const result = await tapNodeTools.runCommand('ls -la');
|
||||
expect(result.exitCode).toEqual(0);
|
||||
});
|
||||
|
||||
tap.start();
|
Reference in New Issue
Block a user