10 lines
241 B
TypeScript
10 lines
241 B
TypeScript
import { expect, tap } from '@git.zone/tstest/tapbundle';
|
|
|
|
import * as tools from '../ts/index.js';
|
|
|
|
tap.test('should export runCli function', async () => {
|
|
expect(typeof tools.runCli).toEqual('function');
|
|
});
|
|
|
|
export default tap.start();
|