Skip to content

Commit

Permalink
Preventing double-up of arrays
Browse files Browse the repository at this point in the history
  • Loading branch information
cahirodoherty-learningpool committed Dec 20, 2023
1 parent 4421674 commit b9bbeaf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test.js
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ async function jestRun() {

// Limit the tests if a certain set are passed in
if (argumentValues.testfiles) {
config.testMatch = [argumentValues.testfiles.split(',')];
config.testMatch = argumentValues.testfiles.split(',');
}

return jest.runCLI(config, [process.cwd().replace(/\\/g, '/')]);
Expand Down

0 comments on commit b9bbeaf

Please sign in to comment.