From 971ec56a0426f96e4a7a6ce87fa128f4df57997b Mon Sep 17 00:00:00 2001 From: Asier Isayas Date: Mon, 5 Jan 2026 14:29:08 -0500 Subject: [PATCH] update container creation throughpout to be 5000 --- test/sql/scaleAndSettings/scale.spec.ts | 9 ++++++--- test/testData.ts | 1 + 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/test/sql/scaleAndSettings/scale.spec.ts b/test/sql/scaleAndSettings/scale.spec.ts index 45c39b23d..81dd4d38c 100644 --- a/test/sql/scaleAndSettings/scale.spec.ts +++ b/test/sql/scaleAndSettings/scale.spec.ts @@ -102,9 +102,12 @@ test.describe("Manual throughput", () => { await scaleTab.click(); }); - test.afterAll("Delete Test Database", async () => { - await context?.dispose(); - }); + if (!process.env.CI) { + test.afterAll("Delete Test Database", async () => { + await context?.dispose(); + }); + } + test("Update manual throughput", async () => { await getThroughputInput(explorer, "manual").fill(TEST_MANUAL_THROUGHPUT_RU_2K.toString()); diff --git a/test/testData.ts b/test/testData.ts index 9729a90b4..44e68bb9b 100644 --- a/test/testData.ts +++ b/test/testData.ts @@ -115,6 +115,7 @@ export async function createTestSQLContainer({ const { container } = await database.containers.createIfNotExists({ id: containerId, partitionKey, + throughput: 5000 }); if (includeTestData) { const batchCount = TestData.length / 100;