npm run format

This commit is contained in:
Asier Isayas
2026-01-21 11:08:04 -08:00
parent 22e9580ca4
commit a4b0572f91
7 changed files with 19 additions and 19 deletions

View File

@@ -16,9 +16,9 @@ test.describe("Stored Procedures", () => {
explorer = await DataExplorer.open(page, TestAccount.SQL2);
});
test.afterEach("Delete Test Database", async () => {
await context?.dispose();
});
test.afterEach("Delete Test Database", async () => {
await context?.dispose();
});
test("Add, execute, and delete stored procedure", async ({ page }, testInfo) => {
void page;

View File

@@ -28,9 +28,9 @@ test.describe("Triggers", () => {
explorer = await DataExplorer.open(page, TestAccount.SQL2);
});
test.afterEach("Delete Test Database", async () => {
await context?.dispose();
});
test.afterEach("Delete Test Database", async () => {
await context?.dispose();
});
test("Add and delete trigger", async ({ page }, testInfo) => {
// Open container context menu and click New Trigger

View File

@@ -21,9 +21,9 @@ test.describe("User Defined Functions", () => {
explorer = await DataExplorer.open(page, TestAccount.SQL2);
});
test.afterEach("Delete Test Database", async () => {
await context?.dispose();
});
test.afterEach("Delete Test Database", async () => {
await context?.dispose();
});
test("Add, execute, and delete user defined function", async ({ page }, testInfo) => {
// Open container context menu and click New UDF