mirror of
https://github.com/microsoft/playwright.git
synced 2024-12-14 13:45:36 +03:00
1bbefce9af
This reverts commit a2f9f15e3e
.
31 lines
605 B
TypeScript
31 lines
605 B
TypeScript
import { type PlaywrightTestConfig, devices } from '@playwright/experimental-ct-vue';
|
|
|
|
const config: PlaywrightTestConfig = {
|
|
testDir: 'src',
|
|
forbidOnly: !!process.env.CI,
|
|
retries: process.env.CI ? 2 : 0,
|
|
reporter: 'html',
|
|
use: {
|
|
trace: 'on-first-retry',
|
|
},
|
|
projects: [
|
|
{
|
|
name: 'chromium',
|
|
use: {
|
|
channel: 'chrome',
|
|
...devices['Desktop Chrome']
|
|
},
|
|
},
|
|
{
|
|
name: 'firefox',
|
|
use: { ...devices['Desktop Firefox'] },
|
|
},
|
|
{
|
|
name: 'webkit',
|
|
use: { ...devices['Desktop Safari'] },
|
|
},
|
|
],
|
|
};
|
|
|
|
export default config;
|