Remove all of the test.skip() calls.

This commit is contained in:
Jade Welton
2026-07-10 14:14:19 -07:00
parent fec40b7dff
commit d3d6bbe572
22 changed files with 621 additions and 681 deletions
-3
View File
@@ -35,7 +35,6 @@ test.afterAll("Delete Test Database", async () => {
});
test("Query results", async () => {
test.skip();
// Run the query and verify the results
await queryEditor.locator.click();
const executeQueryButton = explorer.commandBarButton(CommandBarButton.ExecuteQuery);
@@ -58,7 +57,6 @@ test("Query results", async () => {
});
test("Query stats", async () => {
test.skip();
// Run the query and verify the results
await queryEditor.locator.click();
const executeQueryButton = explorer.commandBarButton(CommandBarButton.ExecuteQuery);
@@ -115,7 +113,6 @@ test("View button toggles between vertical and horizontal layout", async () => {
});
test("View dropdown allows selecting vertical or horizontal layout", async () => {
test.skip();
// The default layout is Horizontal (split-view-vertical)
const allotment = queryTab.locator.locator(".split-view-vertical, .split-view-horizontal");
await expect(allotment).toHaveClass(/split-view-vertical/);