Skip to content

Commit

Permalink
Disabling cache from test runner script
Browse files Browse the repository at this point in the history
  • Loading branch information
peabnuts123 committed Jan 1, 2019
1 parent 6c64f80 commit 6eb1762
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/util/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { execAsync } from '.';
export default async function test() {
// Run mocha
try {
console.log(await execAsync(`nyc mocha "test/**/*.test.ts"`));
console.log(await execAsync(`TS_NODE_CACHE=false nyc mocha "test/**/*.test.ts"`));
} catch (err) {
console.error(err);
process.exit(1);
Expand Down

0 comments on commit 6eb1762

Please sign in to comment.