Skip to content

Commit

Permalink
Do the same thing, but smarter
Browse files Browse the repository at this point in the history
  • Loading branch information
askoufis committed Jul 2, 2024
1 parent f38b59d commit ad49437
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion packages/sku/scripts/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,9 @@ process.env.IS_REACT_ACT_ENVIRONMENT = true;
argv.push('--ci');
}

jest.run([...argv, ...(watch ? ['--watch'] : [])]);
if (watch) {
argv.push('--watch');
}

jest.run(argv);
})();

0 comments on commit ad49437

Please sign in to comment.