The console could not create dictionary entries, and team pages showed a static member list with no record of who changed what. Dictionary management, a knowledge upload form, and a team activity feed are now available, alongside a download center that links the published desktop installer feed rather than repository-local paths that no deploy ships. Red-team e2e coverage was added for the account and team flows touched here.
37 lines
1,009 B
TypeScript
37 lines
1,009 B
TypeScript
// apps/web/playwright.config.ts
|
|
// E2E 테스트 설정. 실제 실행을 위해 @playwright/test 설치 + browsers 설치 필요:
|
|
// npm install -D @playwright/test --workspace=@d3ro/web
|
|
// npx playwright install chromium --with-deps
|
|
|
|
import { defineConfig, devices } from '@playwright/test'
|
|
|
|
export default defineConfig({
|
|
testDir: './e2e',
|
|
fullyParallel: true,
|
|
forbidOnly: !!process.env.CI,
|
|
retries: process.env.CI ? 2 : 0,
|
|
workers: process.env.CI ? 1 : undefined,
|
|
reporter: process.env.CI ? [['html'], ['github']] : 'html',
|
|
|
|
use: {
|
|
baseURL: process.env.E2E_BASE_URL ?? 'http://localhost:3000',
|
|
trace: 'on-first-retry',
|
|
screenshot: 'only-on-failure'
|
|
},
|
|
|
|
projects: [
|
|
{
|
|
name: 'chromium',
|
|
use: { ...devices['Desktop Chrome'] }
|
|
}
|
|
],
|
|
|
|
webServer: process.env.E2E_NO_SERVER
|
|
? undefined
|
|
: {
|
|
command: 'npm run start',
|
|
url: 'http://localhost:3000',
|
|
reuseExistingServer: !process.env.CI,
|
|
timeout: 120 * 1000
|
|
}
|
|
})
|