chore(testing): pause test execution and prep deterministic e2e admin seed

This commit is contained in:
2026-02-12 22:28:37 +01:00
parent be6969c30f
commit d016650463
8 changed files with 119 additions and 42 deletions

View File

@@ -15,13 +15,13 @@
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs --port 4173",
"build": "turbo build",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e:prepare": "bun run db:generate && bun run db:migrate:deploy && bun run db:seed",
"test:e2e": "bun run test:e2e:prepare && playwright test",
"test:e2e:headed": "bun run test:e2e:prepare && playwright test --headed",
"test:e2e:ui": "bun run test:e2e:prepare && playwright test --ui",
"test": "echo \"Testing is temporarily disabled. See TODO.md MVP 3: Testing and Quality.\"",
"test:watch": "echo \"Testing is temporarily disabled. See TODO.md MVP 3: Testing and Quality.\"",
"test:coverage": "echo \"Testing is temporarily disabled. See TODO.md MVP 3: Testing and Quality.\"",
"test:e2e:prepare": "echo \"E2E preparation is temporarily disabled. See TODO.md MVP 3: Testing and Quality.\"",
"test:e2e": "echo \"E2E testing is temporarily disabled. See TODO.md MVP 3: Testing and Quality.\"",
"test:e2e:headed": "echo \"E2E testing is temporarily disabled. See TODO.md MVP 3: Testing and Quality.\"",
"test:e2e:ui": "echo \"E2E testing is temporarily disabled. See TODO.md MVP 3: Testing and Quality.\"",
"commitlint": "commitlint --last",
"changelog:preview": "conventional-changelog -p conventionalcommits -r 0 -u",
"changelog:release": "conventional-changelog -p conventionalcommits -i CHANGELOG.md -s -u",