Skip to content

Commit

Permalink
test(e2e): fix lerna filter when only 1 package to test
Browse files Browse the repository at this point in the history
  • Loading branch information
AllanZhengYP committed Dec 9, 2021
1 parent dd66d1a commit a6c35c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/e2e/run-e2e-tests.js
Expand Up @@ -43,7 +43,7 @@ ${packagesToTest.map((package) => package[0]).join("\n")}`);
"run",
"test:e2e",
"--scope",
`'{${packagesToTest.map((package) => package[1]).join(",")}}'`, // https://github.com/lerna/lerna/issues/1846#issuecomment-451172783
`'{${packagesToTest.map((package) => `${package[1]},`).join()}}'`, // https://github.com/lerna/lerna/issues/1846#issuecomment-451172783
"--concurrency",
"1",
],
Expand Down

0 comments on commit a6c35c3

Please sign in to comment.