New testing folder

This commit is contained in:
DaanV2
2021-08-18 17:15:20 +02:00
parent 657f17d6f6
commit c54ef891fa
57 changed files with 11 additions and 0 deletions

0
test/src/SchemaTester.ts Normal file
View File

11
test/src/Utillity.ts Normal file
View File

@@ -0,0 +1,11 @@
import path from "path";
export namespace Files {
export function TestFolder(): string {
return __dirname;
}
export function FilesFolder(): string {
return path.join(TestFolder(), "files");
}
}