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 e38db34 commit 7e544a7Copy full SHA for 7e544a7
index.js
@@ -70,7 +70,10 @@ module.exports = {
70
71
const builtPages = glob
72
.sync(`${PUBLISH_DIR}/**/*.html`)
73
- .map((p) => path.dirname(p.replace(PUBLISH_DIR, '')));
+ .map((p) => p.replace(PUBLISH_DIR, ''));
74
+
75
+ console.log(`Found ${builtPages.length} pages...`);
76
+ builtPages.forEach(p => console.log(`> ${p}`));
77
78
await createEnvFile({ inputs, builtPages });
79
const results = await runCypress({ utils, port });
0 commit comments