tstest/ts/index.ts

10 lines
230 B
TypeScript
Raw Normal View History

2018-08-03 17:18:42 +00:00
import { TsTest } from './tstest.classes.tstest';
const cliRun = async () => {
if (process.env.CLI_CALL) {
const tsTestInstance = new TsTest(process.cwd(), process.argv[2]);
await tsTestInstance.run();
}
};
cliRun();