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