Don't refresh databases when opening Scale+Settings and only delete database if running locally

This commit is contained in:
Asier Isayas
2025-12-31 15:48:22 -05:00
parent 7ddedf3314
commit 7aa62437f0
4 changed files with 28 additions and 20 deletions

View File

@@ -23,9 +23,11 @@ test.describe("Change Partition Key", () => {
await PartitionKeyTab.click();
});
// test.afterAll("Delete Test Database", async () => {
// await context?.dispose();
// });
if (!process.env.CI) {
test.afterEach("Delete Test Database", async () => {
await context?.dispose();
});
}
test("Change partition key path", async () => {
await expect(explorer.frame.getByText("/partitionKey")).toBeVisible();