remove container throughput on creation

This commit is contained in:
Asier Isayas
2026-01-20 11:29:48 -08:00
parent 2466a58e1a
commit 45ecb37f92
2 changed files with 3 additions and 3 deletions

View File

@@ -23,7 +23,9 @@ test.describe("Computed Properties", () => {
});
test.afterAll("Delete Test Database", async () => {
await context?.dispose();
if (!process.env.CI) {
await context?.dispose();
}
});
test("Add valid computed property", async ({ page }) => {

View File

@@ -186,8 +186,6 @@ export async function createTestSQLContainer({
const { container } = await database.containers.createIfNotExists({
id: containerId,
partitionKey,
}, {
offerThroughput: 4000,
});
if (includeTestData) {
const batchCount = TestData.length / 100;