delete db after each test

This commit is contained in:
Asier Isayas
2026-01-22 08:30:15 -08:00
parent d24400198d
commit 561eb6d1fa
7 changed files with 17 additions and 34 deletions

View File

@@ -118,7 +118,5 @@ async function openScaleTab(browser: Browser): Promise<SetupResult> {
}
async function cleanup({ context }: Partial<SetupResult>) {
if (!process.env.CI) {
await context?.dispose();
}
await context?.dispose();
}