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

View File

@@ -14,9 +14,11 @@ test.describe("Stored Procedures", () => {
explorer = await DataExplorer.open(page, TestAccount.SQL);
});
test.afterAll("Delete Test Database", async () => {
await context?.dispose();
});
if (!process.env.CI) {
test.afterAll("Delete Test Database", async () => {
await context?.dispose();
});
}
test("Add, execute, and delete stored procedure", async ({ page }, testInfo) => {
void page;