We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent af23369 commit e11ce3cCopy full SHA for e11ce3c
tests/e2e/run-e2e-tests.js
@@ -26,6 +26,10 @@ exports.runE2ETests = async (resourcesEnv) => {
26
.split("\n")
27
.map((record) => record.split(":").slice(0, 2));
28
const packagesToTest = changedPackages.filter((changedPackage) => hasE2Etest(changedPackage[0]));
29
+ if (packagesToTest?.length === 0) {
30
+ console.log("no changed package contains e2e test.");
31
+ return;
32
+ }
33
console.log(`packages to run e2e test:
34
${packagesToTest.map((package) => package[0]).join("\n")}`);
35
await spawnPromise(
0 commit comments