Skip to content

Commit

Permalink
devops: don't run codegen tests in trace-events mode (#32810)
Browse files Browse the repository at this point in the history
  • Loading branch information
mxschmitt authored Oct 2, 2024
1 parent d7651b8 commit 8715652
Showing 1 changed file with 11 additions and 10 deletions.
21 changes: 11 additions & 10 deletions tests/library/playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -154,16 +154,17 @@ for (const browserName of browserNames) {
...projectTemplate,
});

config.projects.push({
name: `${browserName}-codegen-mode-trace`,
testDir: path.join(testDir, 'library'),
testMatch: '**/cli-codegen-*.spec.ts',
...projectTemplate,
use: {
...projectTemplate.use,
codegenMode: 'trace-events',
}
});
// TODO: figure out reporting to flakiness dashboard (Problem: they get merged, we want to keep them separate)
// config.projects.push({
// name: `${browserName}-codegen-mode-trace`,
// testDir: path.join(testDir, 'library'),
// testMatch: '**/cli-codegen-*.spec.ts',
// ...projectTemplate,
// use: {
// ...projectTemplate.use,
// codegenMode: 'trace-events',
// }
// });
}

export default config;

0 comments on commit 8715652

Please sign in to comment.