initial
This commit is contained in:
9
ts/index.ts
Normal file
9
ts/index.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
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();
|
Reference in New Issue
Block a user