test: add "clock" to the metadata for dashboard traceability

This commit is contained in:
Dmitry Gozman 2024-06-18 10:27:29 -07:00
parent dbc54c763d
commit fbdfe9b0ab
2 changed files with 4 additions and 0 deletions

View file

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

View file

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