From d40a343dfc8d0f02a961ea374fe9c2a469d4f1c4 Mon Sep 17 00:00:00 2001 From: Florent Date: Thu, 13 Jun 2024 15:38:36 +0200 Subject: [PATCH] specify the folder scenario for integration tests --- package.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/package.json b/package.json index 1b8afa5c3f..aa9a420621 100644 --- a/package.json +++ b/package.json @@ -176,10 +176,10 @@ "start": "node ./scripts/start_demo_web_server.mjs", "start:wasm": "node ./scripts/start_demo_web_server.mjs --include-wasm", "test:integration": "npm run test:integration:chrome && npm run test:integration:firefox", - "test:integration:chrome": "cross-env BROWSER_CONFIG=chrome vitest run tests/integration", - "test:integration:chrome:watch": "cross-env BROWSER_CONFIG=chrome vitest watch tests/integration", - "test:integration:firefox": "cross-env BROWSER_CONFIG=firefox vitest run tests/integration", - "test:integration:firefox:watch": "cross-env BROWSER_CONFIG=firefox vitest watch tests/integration", + "test:integration:chrome": "cross-env BROWSER_CONFIG=chrome vitest run tests/integration/scenarios", + "test:integration:chrome:watch": "cross-env BROWSER_CONFIG=chrome vitest watch tests/integration/scenarios", + "test:integration:firefox": "cross-env BROWSER_CONFIG=firefox vitest run tests/integration/scenarios", + "test:integration:firefox:watch": "cross-env BROWSER_CONFIG=firefox vitest watch tests/integration/scenarios", "test:memory": "cross-env BROWSER_CONFIG=chrome vitest run tests/memory", "test:memory:chrome:watch": "cross-env BROWSER_CONFIG=chrome vitest watch tests/memory", "test:unit": "jest --maxWorkers=5",