Skip to content

Commit

Permalink
updated create-all-tests script to add verbose flag and provide summa…
Browse files Browse the repository at this point in the history
…ry of runs
  • Loading branch information
howard-e committed May 26, 2021
1 parent e7212c4 commit 0496c10
Show file tree
Hide file tree
Showing 2 changed files with 135 additions and 81 deletions.
2 changes: 1 addition & 1 deletion scripts/create-all-tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ const p = path.join(rootDirectory, 'tests');

fs.readdirSync(p)
.filter(f => f !== 'resources' && fs.statSync(path.join(p, f)).isDirectory())
.forEach(d => createExampleTests(path.join('tests', d)));
.forEach((d, index, array) => createExampleTests(path.join('tests', d), index === array.length - 1));
Loading

0 comments on commit 0496c10

Please sign in to comment.