mirror of
https://github.com/microsoft/playwright.git
synced 2024-12-14 05:37:20 +03:00
d294c5da33
This required `allowJs: false` in our `tsconfig.json` due to the following error: ``` Error: Cannot find module './utilsBundleImpl' Require stack: - <playwright>/packages/playwright-core/src/utilsBundle.ts - <playwright>/packages/playwright-test/lib/reporters/html.js - <playwright>/tests/playwright-test/reporter-html.spec.ts - <playwright>/tests/playwright-test/stable-test-runner/node_modules/@playwright/test/lib/loader.js - <playwright>/tests/playwright-test/stable-test-runner/node_modules/@playwright/test/lib/runner.js - <playwright>/tests/playwright-test/stable-test-runner/node_modules/@playwright/test/lib/cli.js - <playwright>/tests/playwright-test/stable-test-runner/node_modules/playwright-core/lib/cli/cli.js - <playwright>/tests/playwright-test/stable-test-runner/node_modules/playwright-core/cli.js - <playwright>/tests/playwright-test/stable-test-runner/node_modules/@playwright/test/cli.js at ../../packages/playwright-core/src/utilsBundle.ts:20 18 | import path from 'path'; 19 | > 20 | export const colors: typeof import('../bundles/utils/node_modules/colors/safe') = require('./utilsBundleImpl').colors; | ^ 21 | export const debug: typeof import('../bundles/utils/node_modules/@types/debug') = require('./utilsBundleImpl').debug; 22 | export const getProxyForUrl: typeof import('../bundles/utils/node_modules/@types/proxy-from-env').getProxyForUrl = require('./utilsBundleImpl').getProxyForUrl; 23 | export const HttpsProxyAgent: typeof import('../bundles/utils/node_modules/https-proxy-agent').HttpsProxyAgent = require('./utilsBundleImpl').HttpsProxyAgent; at Object.<anonymous> (<playwright>/packages/playwright-core/src/utilsBundle.ts:20:83) at Object.<anonymous> (<playwright>/packages/playwright-test/src/reporters/html.ts:17:1) ```
51 lines
1.5 KiB
TypeScript
51 lines
1.5 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 } from './stable-test-runner';
|
|
import * as path from 'path';
|
|
|
|
const outputDir = path.join(__dirname, '..', '..', 'test-results');
|
|
const config: Config = {
|
|
timeout: 30000,
|
|
forbidOnly: !!process.env.CI,
|
|
workers: process.env.CI ? 2 : undefined,
|
|
preserveOutput: process.env.CI ? 'failures-only' : 'always',
|
|
snapshotPathTemplate: '__screenshots__/{testFilePath}/{arg}{ext}',
|
|
projects: [
|
|
{
|
|
name: 'playwright-test',
|
|
testDir: __dirname,
|
|
testIgnore: ['assets/**', 'stable-test-runner/**'],
|
|
},
|
|
{
|
|
name: 'image_tools',
|
|
testDir: path.join(__dirname, '../image_tools'),
|
|
testIgnore: [path.join(__dirname, '../fixtures/**')],
|
|
},
|
|
],
|
|
reporter: process.env.CI ? [
|
|
['dot'],
|
|
['json', { outputFile: path.join(outputDir, 'report.json') }],
|
|
] : [
|
|
['list']
|
|
],
|
|
};
|
|
|
|
export default config;
|