devops: don't run codegen tests in trace-events mode (#32810)

This commit is contained in:
Max Schmitt 2024-10-02 23:22:00 +02:00 committed by GitHub
parent d7651b8f56
commit 8715652a0d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 11 additions and 10 deletions

View File

@ -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;