Skip to content

Commit c26f496

Browse files
fix(workspace): fix test
1 parent 894b827 commit c26f496

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

e2e/cli-e2e/tests/collect/format.e2e.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ function isValidFormatedResult(format: string, result: string) {
6666
const isValidFile = {
6767
'html': (report: string) => report.includes(DUMMY_USER_FLOW_NAME),
6868
'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 |`)
69+
'md': (report: string) => report.includes(`| Gather Mode | Performance | Accessibility | Best Practices | Seo |`)
7070
};
7171
// @ts-ignore
7272
return isValidFile[format](result);

0 commit comments

Comments
 (0)