chore: seminarhof customer project

This commit is contained in:
e2e
2026-07-10 23:45:12 +02:00
commit 5a060fd8f2
188 changed files with 20779 additions and 0 deletions

21
e2e/package.json Normal file
View File

@@ -0,0 +1,21 @@
{
"name": "@project/e2e",
"version": "0.0.1",
"private": true,
"type": "module",
"description": "End-to-end test harness \u2014 Cucumber + Playwright.",
"scripts": {
"test": "E2E_MANAGE_SERVERS=1 E2E_ISOLATED_DB=1 cucumber-js --config tests/cucumber.mjs --tags 'not @skip'",
"test:headed": "HEADED=1 E2E_MANAGE_SERVERS=1 E2E_ISOLATED_DB=1 cucumber-js --config tests/cucumber.mjs --tags 'not @skip'",
"test:tag": "cucumber-js --config tests/cucumber.mjs --tags",
"tsc": "tsc --noEmit"
},
"devDependencies": {
"@cucumber/cucumber": "^11.0.0",
"@playwright/test": "^1.50.0",
"@types/node": "^22",
"tsx": "^4.21.0",
"typescript": "~5.8.0",
"@pikku/cucumber": "link:@pikku/cucumber"
}
}