From cea2c49eb65ca27b6bbcad848280a53a4e5d43a6 Mon Sep 17 00:00:00 2001 From: Asier Isayas Date: Tue, 20 Jan 2026 12:33:01 -0800 Subject: [PATCH] added offer throughput --- test/testData.ts | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/test/testData.ts b/test/testData.ts index 7e5a1f26c..723836a66 100644 --- a/test/testData.ts +++ b/test/testData.ts @@ -183,10 +183,15 @@ export async function createTestSQLContainer({ const client = new CosmosClient(clientOptions); const { database } = await client.databases.createIfNotExists({ id: databaseId }); try { - const { container } = await database.containers.createIfNotExists({ - id: containerId, - partitionKey, - }); + const { container } = await database.containers.createIfNotExists( + { + id: containerId, + partitionKey, + }, + { + offerThroughput: 4000, + }, + ); if (includeTestData) { const batchCount = TestData.length / 100; for (let i = 0; i < batchCount; i++) {