Path: blob/main/test/componentFixtures/playwright/playwright.config.ts
13523 views
/*---------------------------------------------------------------------------------------------1* Copyright (c) Microsoft Corporation. All rights reserved.2* Licensed under the MIT License. See License.txt in the project root for license information.3*--------------------------------------------------------------------------------------------*/45import { defineConfig } from '@playwright/test';6import { dirname } from 'path';7import { fileURLToPath } from 'url';89const __dirname = dirname(fileURLToPath(import.meta.url));1011export default defineConfig({12testDir: './tests',13timeout: 30_000,14retries: 0,15use: {16trace: 'retain-on-failure',17},18webServer: {19command: 'npx component-explorer serve -p ../component-explorer.json --background --attach -vv',20cwd: __dirname,21wait: {22stdout: /current: http:\/\/localhost:(?<component_explorer_port>\d+)\/___explorer/,23},24timeout: 120_000,25},26});272829