From 10e6fa0e84404fcf2ecc9b6859b90d4fea37ccd5 Mon Sep 17 00:00:00 2001 From: Julien Calixte Date: Mon, 17 Apr 2023 21:12:50 +0200 Subject: [PATCH] distinct test for ui mode --- package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index da9d184..e6238ba 100644 --- a/package.json +++ b/package.json @@ -6,8 +6,9 @@ "dev": "vite", "build": "run-p type-check build-only", "preview": "vite preview", - "test": "pnpm lint && pnpm type-check && pnpm test:unit --ui", + "test": "pnpm lint && pnpm type-check && pnpm test:unit", "test:unit": "vitest", + "test:ui": "vitest --ui", "build-only": "vite build", "type-check": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false", "lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",