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 894b827 commit c26f496Copy full SHA for c26f496
e2e/cli-e2e/tests/collect/format.e2e.test.ts
@@ -66,7 +66,7 @@ function isValidFormatedResult(format: string, result: string) {
66
const isValidFile = {
67
'html': (report: string) => report.includes(DUMMY_USER_FLOW_NAME),
68
'json': (report: string) => !!(JSON.parse(report)?.name || '').includes(DUMMY_USER_FLOW_NAME),
69
- 'md': (report: string) => report.includes(`| Gather Mode | Performance | Accessibility | Best Practices | Seo | Pwa |`)
+ 'md': (report: string) => report.includes(`| Gather Mode | Performance | Accessibility | Best Practices | Seo |`)
70
};
71
// @ts-ignore
72
return isValidFile[format](result);
0 commit comments