tstest/ts/index.ts
2018-08-03 19:18:42 +02:00

10 lines
230 B
TypeScript

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();