update container creation throughpout to be 5000

This commit is contained in:
Asier Isayas
2026-01-05 14:29:08 -05:00
parent 725c0dfe90
commit 971ec56a04
2 changed files with 7 additions and 3 deletions

View File

@@ -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());

View File

@@ -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;