10 lines
230 B
TypeScript
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();
|