test: add "clock" to the metadata for dashboard traceability (#31370)

This commit is contained in:
Dmitry Gozman 2024-06-18 14:56:08 -07:00 committed by GitHub
parent ac90a47b73
commit 6ae9adfa4f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 0 deletions

View File

@ -134,6 +134,7 @@ for (const browserName of browserNames) {
mode,
video: !!video,
trace: !!trace,
clock: 'clock-' + (process.env.PW_CLOCK || 'default'),
},
});
}

View File

@ -49,4 +49,7 @@ export default defineConfig({
},
],
reporter: reporters(),
metadata: {
clock: 'clock-' + (process.env.PW_CLOCK || 'default'),
},
});