11 lines
265 B
TypeScript
11 lines
265 B
TypeScript
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();
|