change settings.spect.ts from serial to parallel

This commit is contained in:
Asier Isayas
2026-01-05 11:04:26 -05:00
parent 9d1b341889
commit 9428808a13
2 changed files with 2 additions and 2 deletions

View File

@@ -78,7 +78,7 @@ test.describe("Autoscale throughput", () => {
await expect(explorer.getConsoleHeaderStatus()).toContainText( await expect(explorer.getConsoleHeaderStatus()).toContainText(
`Successfully updated offer for collection ${context.container.id}`, `Successfully updated offer for collection ${context.container.id}`,
{ {
timeout: ONE_MINUTE_MS, timeout: 2 * ONE_MINUTE_MS,
}, },
); );
}; };

View File

@@ -2,7 +2,7 @@ import { expect, test } from "@playwright/test";
import { CommandBarButton, DataExplorer, ONE_MINUTE_MS, TestAccount } from "../../fx"; import { CommandBarButton, DataExplorer, ONE_MINUTE_MS, TestAccount } from "../../fx";
import { createTestSQLContainer, TestContainerContext } from "../../testData"; import { createTestSQLContainer, TestContainerContext } from "../../testData";
test.describe.serial("Settings under Scale & Settings", () => { test.describe("Settings under Scale & Settings", () => {
let context: TestContainerContext = null!; let context: TestContainerContext = null!;
let explorer: DataExplorer = null!; let explorer: DataExplorer = null!;