import { Before, setDefaultTimeout } from "@cucumber/cucumber"; import { resetDatabase } from "../../test-support/reset-db.js"; // Integration tests hitting a real Postgres + argon2 need more than // Cucumber's 5s default, especially on a cold Prisma connection. setDefaultTimeout(10_000); Before(async () => { await resetDatabase(); });