for scale and settings, dont create sample data in container

This commit is contained in:
Asier Isayas
2025-12-26 21:09:36 -05:00
parent 5a24db2230
commit d6a84af0a2
2 changed files with 2 additions and 2 deletions

View File

@@ -14,7 +14,7 @@ test.describe("Autoscale and Manual throughput", () => {
let explorer: DataExplorer = null!;
test.beforeEach("Create Test Database & Open container settings", async ({ page }) => {
context = await createTestSQLContainer(true);
context = await createTestSQLContainer();
explorer = await DataExplorer.open(page, TestAccount.SQL);
// Click Scale & Settings and open Scale tab

View File

@@ -7,7 +7,7 @@ test.describe("Settings under Scale & Settings", () => {
let explorer: DataExplorer = null!;
test.beforeAll("Create Test Database", async () => {
context = await createTestSQLContainer(true);
context = await createTestSQLContainer();
});
test.beforeEach("Open Settings tab under Scale & Settings", async ({ page }) => {