mirror of
				https://github.com/microsoft/playwright.git
				synced 2025-06-26 21:40:17 +00:00 
			
		
		
		
	 f3a99fdd69
			
		
	
	
		f3a99fdd69
		
			
		
	
	
	
	
		
			
			This patch:
- updates documentation to lead users from `TestConfig.snapshotDir` and
  `testInfo.snapshotSuffix` to `TestConfig.snapshotPathTemplate` as a
  better and more flexible alternative.
- drops `{snapshotSuffix}` from documentation
- stops using `snapshotSuffix = ''` in our own tests and switches us
  to the `snapshotPathTemplate`.
- adds `{testName}` token.
		
	
			
		
			
				
	
	
		
			151 lines
		
	
	
		
			4.7 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			151 lines
		
	
	
		
			4.7 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| /**
 | |
|  * 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.
 | |
|  */
 | |
| 
 | |
| import { config as loadEnv } from 'dotenv';
 | |
| loadEnv({ path: path.join(__dirname, '..', '..', '.env') });
 | |
| 
 | |
| import type { Config, PlaywrightTestOptions, PlaywrightWorkerOptions } from '@playwright/test';
 | |
| import * as path from 'path';
 | |
| import type { TestModeWorkerOptions } from '../config/testModeFixtures';
 | |
| import type { TestModeName } from '../config/testMode';
 | |
| import type { CoverageWorkerOptions } from '../config/coverageFixtures';
 | |
| 
 | |
| type BrowserName = 'chromium' | 'firefox' | 'webkit';
 | |
| 
 | |
| const getExecutablePath = (browserName: BrowserName) => {
 | |
|   if (browserName === 'chromium' && process.env.CRPATH)
 | |
|     return process.env.CRPATH;
 | |
|   if (browserName === 'firefox' && process.env.FFPATH)
 | |
|     return process.env.FFPATH;
 | |
|   if (browserName === 'webkit' && process.env.WKPATH)
 | |
|     return process.env.WKPATH;
 | |
| };
 | |
| 
 | |
| let mode: TestModeName = 'default';
 | |
| if (process.env.PW_OUT_OF_PROCESS_DRIVER)
 | |
|   mode = 'driver';
 | |
| else if (process.env.PLAYWRIGHT_DOCKER)
 | |
|   mode = 'docker';
 | |
| else
 | |
|   mode = (process.env.PWTEST_MODE ?? 'default') as ('default' | 'driver' | 'service' | 'service2');
 | |
| const headed = process.argv.includes('--headed');
 | |
| const channel = process.env.PWTEST_CHANNEL as any;
 | |
| const video = !!process.env.PWTEST_VIDEO;
 | |
| const trace = !!process.env.PWTEST_TRACE;
 | |
| 
 | |
| const outputDir = path.join(__dirname, '..', '..', 'test-results');
 | |
| const testDir = path.join(__dirname, '..');
 | |
| const config: Config<CoverageWorkerOptions & PlaywrightWorkerOptions & PlaywrightTestOptions & TestModeWorkerOptions> = {
 | |
|   testDir,
 | |
|   outputDir,
 | |
|   expect: {
 | |
|     timeout: 10000,
 | |
|   },
 | |
|   maxFailures: 100,
 | |
|   timeout: video ? 60000 : 30000,
 | |
|   globalTimeout: 5400000,
 | |
|   workers: process.env.CI ? 2 : undefined,
 | |
|   fullyParallel: !process.env.CI,
 | |
|   forbidOnly: !!process.env.CI,
 | |
|   preserveOutput: process.env.CI ? 'failures-only' : 'always',
 | |
|   retries: process.env.CI ? 3 : 0,
 | |
|   reporter: process.env.CI ? [
 | |
|     ['dot'],
 | |
|     ['json', { outputFile: path.join(outputDir, 'report.json') }],
 | |
|   ] : [
 | |
|     ['html', { open: 'on-failure' }]
 | |
|   ],
 | |
|   projects: [],
 | |
|   use: {},
 | |
| };
 | |
| 
 | |
| if (mode === 'service') {
 | |
|   config.webServer = {
 | |
|     command: 'npx playwright experimental-grid-server --auth-token=mysecret --address=http://localhost:3333 --port=3333',
 | |
|     port: 3333,
 | |
|     reuseExistingServer: true,
 | |
|     env: {
 | |
|       PWTEST_UNSAFE_GRID_VERSION: '1',
 | |
|     },
 | |
|   };
 | |
|   config.use.connectOptions = {
 | |
|     wsEndpoint: 'ws://localhost:3333/mysecret/claimWorker?os=linux',
 | |
|   };
 | |
|   config.projects = [{
 | |
|     name: 'Chromium page tests',
 | |
|     testMatch: /page\/.*spec.ts$/,
 | |
|     testIgnore: '**/*screenshot*',
 | |
|     use: {
 | |
|       browserName: 'chromium',
 | |
|       mode
 | |
|     }
 | |
|   }];
 | |
| }
 | |
| 
 | |
| if (mode === 'service2') {
 | |
|   config.webServer = {
 | |
|     command: 'npx playwright run-server --port=3333',
 | |
|     port: 3333,
 | |
|     reuseExistingServer: true,
 | |
|   };
 | |
|   config.use.connectOptions = {
 | |
|     wsEndpoint: 'ws://localhost:3333/',
 | |
|   };
 | |
| }
 | |
| 
 | |
| const browserNames = ['chromium', 'webkit', 'firefox'] as BrowserName[];
 | |
| for (const browserName of browserNames) {
 | |
|   const executablePath = getExecutablePath(browserName);
 | |
|   if (executablePath && !process.env.TEST_WORKER_INDEX)
 | |
|     console.error(`Using executable at ${executablePath}`);
 | |
|   const devtools = process.env.DEVTOOLS === '1';
 | |
|   const testIgnore: RegExp[] = browserNames.filter(b => b !== browserName).map(b => new RegExp(b));
 | |
|   for (const folder of ['library', 'page']) {
 | |
|     config.projects.push({
 | |
|       name: browserName,
 | |
|       testDir: path.join(testDir, folder),
 | |
|       testIgnore,
 | |
|       snapshotPathTemplate: '{testDir}/{testFileDir}/{testFileName}-snapshots/{arg}{-projectName}{ext}',
 | |
|       use: {
 | |
|         mode,
 | |
|         browserName,
 | |
|         headless: !headed,
 | |
|         channel,
 | |
|         video: video ? 'on' : undefined,
 | |
|         launchOptions: {
 | |
|           executablePath,
 | |
|           devtools
 | |
|         },
 | |
|         trace: trace ? 'on' : undefined,
 | |
|         coverageName: browserName,
 | |
|       },
 | |
|       metadata: {
 | |
|         platform: process.platform,
 | |
|         docker: !!process.env.INSIDE_DOCKER,
 | |
|         dockerIntegration: !!process.env.PLAYWRIGHT_DOCKER,
 | |
|         headful: !!headed,
 | |
|         browserName,
 | |
|         channel,
 | |
|         mode,
 | |
|         video: !!video,
 | |
|         trace: !!trace,
 | |
|       },
 | |
|     });
 | |
|   }
 | |
| }
 | |
| 
 | |
| export default config;
 |