fix
This commit is contained in:
@@ -189,11 +189,9 @@ async function runQuickTests() {
|
||||
console.log("=".repeat(50));
|
||||
|
||||
const essentialSuites = ["public", "provider", "patient"];
|
||||
const pattern = essentialSuites
|
||||
.map((suite) => testSuites[suite].pattern)
|
||||
.join("|");
|
||||
const patterns = essentialSuites.map((suite) => testSuites[suite].pattern);
|
||||
|
||||
const jestArgs = ["--testPathPattern", `(${pattern})`];
|
||||
const jestArgs = ["--testPathPattern", `"(${patterns.join("|")})"`];
|
||||
|
||||
try {
|
||||
const exitCode = await executeJest(jestArgs);
|
||||
|
Reference in New Issue
Block a user