tstest/ts/index.ts
2020-06-01 19:58:15 +00:00

7 lines
189 B
TypeScript

import { TsTest } from './tstest.classes.tstest';
export const runCli = async () => {
const tsTestInstance = new TsTest(process.cwd(), process.argv[2]);
await tsTestInstance.run();
};