test(e2e): add global setup, sign-in helpers and authenticated page tests

This commit is contained in:
2026-06-24 16:23:20 +02:00
parent a732e13ee8
commit 32b08245ca
4 changed files with 212 additions and 1 deletions

View File

@@ -178,6 +178,17 @@
"env": { "vitest": true },
"rules": { "typescript/no-explicit-any": "off" }
},
{
"files": ["tests/e2e/**/*.ts"],
"env": { "browser": false, "node": true },
"rules": {
"import/no-nodejs-modules": "off",
"no-console": "off",
"no-duplicate-imports": "off",
"no-process-exit": "off",
"promise/prefer-await-to-then": "off"
}
},
{
"files": ["scripts/**/*.ts"],
"env": { "browser": false, "node": true },