From 73a7d8291b9b313b7b0b026bfb768a530c315587 Mon Sep 17 00:00:00 2001 From: David Snelling Date: Tue, 16 Jun 2026 12:52:56 -0700 Subject: [PATCH] =?UTF-8?q?test(8.0):=20drop=20dead=20s3/distributed/cloud?= =?UTF-8?q?=20scripts=20+=2032GB=E2=86=928GB=20integration=20heap?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Companion to the s3 suite removal: s3 and distributed storage were removed in 8.0, so test:s3 / test:distributed / test:cloud pointed at gone code. Also lowers test:integration's heap to 8 GB now that Tier 1 uses the deterministic embedder (runs on any machine). --- package.json | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/package.json b/package.json index 7df5df52..f6ba740c 100644 --- a/package.json +++ b/package.json @@ -82,10 +82,7 @@ "test:coverage": "NODE_OPTIONS='--max-old-space-size=8192' vitest run --config tests/configs/vitest.unit.config.ts --coverage", "test:unit": "NODE_OPTIONS='--max-old-space-size=8192' vitest run --config tests/configs/vitest.unit.config.ts", "test:perf": "vitest run tests/unit/performance --reporter=basic", - "test:integration": "NODE_OPTIONS='--max-old-space-size=32768' vitest run --config tests/configs/vitest.integration.config.ts", - "test:s3": "vitest run tests/integration/s3-storage.test.ts", - "test:distributed": "vitest run tests/integration/distributed.test.ts", - "test:cloud": "npm run test:s3 && npm run test:distributed", + "test:integration": "NODE_OPTIONS='--max-old-space-size=8192' vitest run --config tests/configs/vitest.integration.config.ts", "test:all": "npm run test:unit && npm run test:integration", "test:ci-unit": "CI=true vitest run --config tests/configs/vitest.unit.config.ts", "test:ci-integration": "NODE_OPTIONS='--max-old-space-size=16384' CI=true vitest run --config tests/configs/vitest.integration.config.ts",