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

@@ -0,0 +1,11 @@
import { ensureE2EAdminBootstrap } from "../src/lib/auth/server"
async function main() {
await ensureE2EAdminBootstrap()
console.log("E2E admin bootstrap completed")
}
main().catch((error) => {
console.error(error)
process.exit(1)
})