2018-08-03 17:18:42 +00:00
|
|
|
import { TsTest } from './tstest.classes.tstest';
|
|
|
|
|
2020-06-01 19:58:15 +00:00
|
|
|
export const runCli = async () => {
|
|
|
|
const tsTestInstance = new TsTest(process.cwd(), process.argv[2]);
|
|
|
|
await tsTestInstance.run();
|
2018-08-03 17:18:42 +00:00
|
|
|
};
|