- Updated playwright.config.js to allow dynamic base URL configuration via environment variables, improving flexibility for different environments. - Modified .gitea/workflows/test.yml to include steps for starting a development stack, seeding test data, and stopping the stack after tests, enhancing the CI process for end-to-end testing. - Refactored login test in dev-smoke-test.spec.js to use a dedicated function for submitting the login form, improving code clarity and maintainability.
12 lines
251 B
JSON
12 lines
251 B
JSON
{
|
|
"name": "shinkan-jinkendo",
|
|
"private": true,
|
|
"description": "Workspace-Metadaten für E2E (Playwright). Frontend: frontend/",
|
|
"scripts": {
|
|
"test:e2e": "playwright test"
|
|
},
|
|
"devDependencies": {
|
|
"@playwright/test": "^1.49.0"
|
|
}
|
|
}
|