1 Star 0 Fork 632

lxy/NocoBase

forked from NocoBase/NocoBase 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
playwright.config.ts 1.39 KB
一键复制 编辑 原始数据 按行查看 历史
import { defineConfig, devices } from '@playwright/test';
export default defineConfig({
timeout: process.env.CI ? 2 * 60 * 1000 : 30 * 1000,
// Look for test files in the "tests" directory, relative to this configuration file.
testDir: 'packages',
testMatch: /.*\/e2e\/.+\.test\.[tj]sx*$/,
// Run all tests in parallel.
fullyParallel: true,
// Fail the build on CI if you accidentally left test.only in the source code.
forbidOnly: !!process.env.CI,
// Retry on CI only.
retries: process.env.CI ? 2 : 0,
// Opt out of parallel tests on CI.
// workers: process.env.CI ? 1 : undefined,
workers: 1,
maxFailures: 1,
// Reporter to use
reporter: process.env.PLAYWRIGHT_SKIP_REPORTER
? undefined
: [['html', { outputFolder: './playwright/tests-report' }]],
outputDir: './playwright/test-results',
use: {
// Base URL to use in actions like `await page.goto('/')`.
baseURL: process.env.APP_BASE_URL || `http://localhost:${process.env.APP_PORT || 20000}`,
// Collect trace when retrying the failed test.
trace: 'on-first-retry',
},
// Configure projects for major browsers.
projects: [
{
name: 'authSetup',
testDir: './scripts',
testMatch: 'auth.setup.ts',
},
{
name: 'chromium',
use: { ...devices['Desktop Chrome'], storageState: 'playwright/.auth/admin.json' },
dependencies: ['authSetup'],
},
],
});
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
TypeScript
1
https://gitee.com/liuxueyan18/nocobase.git
git@gitee.com:liuxueyan18/nocobase.git
liuxueyan18
nocobase
NocoBase
main

搜索帮助