in stored procedure test, only delete DB when running locally not in CI

This commit is contained in:
Asier Isayas
2026-01-09 10:56:36 -08:00
parent 92c8afd166
commit 3d182977d6
+5 -3
View File
@@ -14,9 +14,11 @@ test.describe("Stored Procedures", () => {
explorer = await DataExplorer.open(page, TestAccount.SQL); explorer = await DataExplorer.open(page, TestAccount.SQL);
}); });
test.afterAll("Delete Test Database", async () => { if (!process.env.CI) {
await context?.dispose(); test.afterAll("Delete Test Database", async () => {
}); await context?.dispose();
});
}
test("Add, execute, and delete stored procedure", async ({ page }, testInfo) => { test("Add, execute, and delete stored procedure", async ({ page }, testInfo) => {
void page; void page;