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 f812cca commit 2dc9719Copy full SHA for 2dc9719
run.js
@@ -323,15 +323,11 @@ export async function run( {
323
for ( const report of Object.values( reports ) ) {
324
if ( !report.total ) {
325
stop = true;
326
- const reportFlags = [
327
- ...report.flags,
328
- ...( report.run ? [ report.run ] : [] )
329
- ];
330
console.error(
331
chalk.red(
332
- `No tests were run for page with flags "${ reportFlags.join(
333
- "&"
334
- ) }" in ${ getBrowserString( report.browser ) } (${ report.id })`
+ `No tests were run with URL "${ report.url }" in ${ getBrowserString(
+ report.browser
+ ) } (${ report.id })`
335
)
336
);
337
}
0 commit comments