2021-04-02 02:35:26 +03:00
|
|
|
/**
|
|
|
|
* Copyright (c) Microsoft Corporation.
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2022-03-12 02:12:25 +03:00
|
|
|
import { config as loadEnv } from 'dotenv';
|
|
|
|
loadEnv({ path: path.join(__dirname, '..', '..', '.env') });
|
|
|
|
|
2021-10-27 18:28:53 +03:00
|
|
|
import type { Config, PlaywrightTestOptions, PlaywrightWorkerOptions } from '@playwright/test';
|
2021-04-02 02:35:26 +03:00
|
|
|
import * as path from 'path';
|
2022-04-07 00:57:14 +03:00
|
|
|
import type { ServerWorkerOptions } from '../config/serverFixtures';
|
2021-10-28 18:31:30 +03:00
|
|
|
|
|
|
|
process.env.PWPAGE_IMPL = 'android';
|
2021-04-02 02:35:26 +03:00
|
|
|
|
2021-05-08 01:25:55 +03:00
|
|
|
const outputDir = path.join(__dirname, '..', '..', 'test-results');
|
|
|
|
const testDir = path.join(__dirname, '..');
|
2021-10-27 18:28:53 +03:00
|
|
|
const config: Config<ServerWorkerOptions & PlaywrightWorkerOptions & PlaywrightTestOptions> = {
|
2021-05-08 01:25:55 +03:00
|
|
|
testDir,
|
|
|
|
outputDir,
|
|
|
|
timeout: 120000,
|
|
|
|
globalTimeout: 7200000,
|
|
|
|
workers: 1,
|
|
|
|
forbidOnly: !!process.env.CI,
|
|
|
|
retries: process.env.CI ? 1 : 0,
|
|
|
|
reporter: process.env.CI ? [
|
2022-08-18 21:12:33 +03:00
|
|
|
['dot'],
|
|
|
|
['json', { outputFile: path.join(outputDir, 'report.json') }],
|
2021-05-08 01:25:55 +03:00
|
|
|
] : 'line',
|
|
|
|
projects: [],
|
|
|
|
};
|
|
|
|
|
2021-05-20 19:51:09 +03:00
|
|
|
const metadata = {
|
|
|
|
platform: 'Android',
|
|
|
|
headful: false,
|
|
|
|
browserName: 'chromium',
|
2021-05-25 05:06:46 +03:00
|
|
|
channel: 'chrome',
|
2021-05-20 19:51:09 +03:00
|
|
|
mode: 'default',
|
|
|
|
video: false,
|
|
|
|
};
|
|
|
|
|
2021-05-08 01:25:55 +03:00
|
|
|
config.projects.push({
|
|
|
|
name: 'android',
|
2021-05-17 05:58:26 +03:00
|
|
|
use: {
|
2021-04-29 21:11:32 +03:00
|
|
|
loopback: '10.0.2.2',
|
2021-05-13 20:22:23 +03:00
|
|
|
browserName: 'chromium',
|
2021-05-08 01:25:55 +03:00
|
|
|
},
|
2023-08-09 20:40:33 +03:00
|
|
|
snapshotPathTemplate: '{testDir}/{testFileDir}/{testFileName}-snapshots/{arg}{-projectName}{ext}',
|
2021-05-08 01:25:55 +03:00
|
|
|
testDir: path.join(testDir, 'android'),
|
2021-05-20 19:51:09 +03:00
|
|
|
metadata,
|
2021-05-08 01:25:55 +03:00
|
|
|
});
|
|
|
|
|
|
|
|
config.projects.push({
|
|
|
|
name: 'android',
|
2021-05-17 05:58:26 +03:00
|
|
|
use: {
|
2021-05-08 01:25:55 +03:00
|
|
|
loopback: '10.0.2.2',
|
2021-05-13 20:22:23 +03:00
|
|
|
browserName: 'chromium',
|
2021-05-08 01:25:55 +03:00
|
|
|
},
|
2023-08-09 20:40:33 +03:00
|
|
|
snapshotPathTemplate: '{testDir}/{testFileDir}/{testFileName}-snapshots/{arg}{-projectName}{ext}',
|
2021-05-08 01:25:55 +03:00
|
|
|
testDir: path.join(testDir, 'page'),
|
2021-05-20 19:51:09 +03:00
|
|
|
metadata,
|
2021-05-08 01:25:55 +03:00
|
|
|
});
|
2021-04-29 21:11:32 +03:00
|
|
|
|
2021-05-08 01:25:55 +03:00
|
|
|
export default config;
|