mirror of
https://github.com/garronej/ts-ci.git
synced 2025-11-30 21:43:05 +00:00
update
This commit is contained in:
parent
7ca6a7bc03
commit
f405b1cc58
11 changed files with 195 additions and 85 deletions
5
src/test/getProjectRoot.ts
Normal file
5
src/test/getProjectRoot.ts
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
|
||||
|
||||
import { getProjectRoot} from "../tools/getProjectRoot";
|
||||
|
||||
console.log(`Project root path: ${getProjectRoot()} does it seems right ? If yes then PASS`);
|
||||
|
|
@ -19,7 +19,8 @@ import { Deferred } from "evt/dist/tools/Deferred";
|
|||
|
||||
for (const name of [
|
||||
"myFunction",
|
||||
"myObject"
|
||||
"myObject",
|
||||
"getProjectRoot"
|
||||
]) {
|
||||
|
||||
console.log(`Running: ${name}`);
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
|
||||
import * as fs from "fs";
|
||||
import * as path from "path";
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue