Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions local_modules/simple-test-framework/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
"build": "tsc"
},
"devDependencies": {
"ts-node": "10",
"typescript": "3"
"ts-node": "10.9.2",
"typescript": "3.9.10"
},
"private": true
}
}
3 changes: 3 additions & 0 deletions local_modules/simple-test-framework/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,9 @@ async function findAndRunTests(dir: string) {
const stat = fs.statSync(filePath);

if (stat.isDirectory()) {
if (file === 'node_modules') {
continue;
}
await findAndRunTests(filePath);
} else if (file.endsWith('.spec.ts')) {
await runTestFile(filePath);
Expand Down
Loading