mirror of
https://github.com/Azure/cosmos-explorer.git
synced 2026-01-31 15:44:11 +00:00
remove container throughput on creation
This commit is contained in:
@@ -23,7 +23,9 @@ test.describe("Computed Properties", () => {
|
|||||||
});
|
});
|
||||||
|
|
||||||
test.afterAll("Delete Test Database", async () => {
|
test.afterAll("Delete Test Database", async () => {
|
||||||
await context?.dispose();
|
if (!process.env.CI) {
|
||||||
|
await context?.dispose();
|
||||||
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
test("Add valid computed property", async ({ page }) => {
|
test("Add valid computed property", async ({ page }) => {
|
||||||
|
|||||||
@@ -186,8 +186,6 @@ export async function createTestSQLContainer({
|
|||||||
const { container } = await database.containers.createIfNotExists({
|
const { container } = await database.containers.createIfNotExists({
|
||||||
id: containerId,
|
id: containerId,
|
||||||
partitionKey,
|
partitionKey,
|
||||||
}, {
|
|
||||||
offerThroughput: 4000,
|
|
||||||
});
|
});
|
||||||
if (includeTestData) {
|
if (includeTestData) {
|
||||||
const batchCount = TestData.length / 100;
|
const batchCount = TestData.length / 100;
|
||||||
|
|||||||
Reference in New Issue
Block a user