test: properly annotate Android tests for flakiness dashbboard (#6133)
This commit is contained in:
parent
bd0043b8cb
commit
632ff111d4
|
|
@ -43,6 +43,12 @@ export class AndroidEnv implements Env<AndroidTestArgs> {
|
||||||
async beforeEach(testInfo: TestInfo) {
|
async beforeEach(testInfo: TestInfo) {
|
||||||
// Use chromium screenshots.
|
// Use chromium screenshots.
|
||||||
testInfo.snapshotPathSegment = 'chromium';
|
testInfo.snapshotPathSegment = 'chromium';
|
||||||
|
testInfo.data = {
|
||||||
|
browserName: 'chromium',
|
||||||
|
platform: 'Android',
|
||||||
|
headful: true,
|
||||||
|
browserVersion: this._browserVersion,
|
||||||
|
};
|
||||||
return {
|
return {
|
||||||
mode: 'default' as const,
|
mode: 'default' as const,
|
||||||
isChromium: true,
|
isChromium: true,
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue