From 242a9ab85d5350aaef7649afe776bf6f2b0f374c Mon Sep 17 00:00:00 2001 From: Tomas Dvorak Date: Thu, 24 Oct 2024 14:07:36 -0700 Subject: [PATCH] test(examples): update start script Ref: #62 Signed-off-by: Tomas Dvorak --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index b3e5aa5b..87090853 100644 --- a/package.json +++ b/package.json @@ -126,8 +126,8 @@ "format:fix": "yarn prettier --write .", "test:unit": "vitest run src", "test:unit:watch": "vitest run src", - "test:e2e": "vitest run tests", - "test:e2e:watch": "vitest watch tests", + "test:e2e": "vitest run tests/e2e", + "test:e2e:watch": "vitest watch tests/e2e", "test:all": "vitest run", "test:watch": "vitest watch", "test:examples": "vitest --config ./examples/vitest.examples.config.ts run tests/examples",