diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a8caa51..5548ba4 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -14,7 +14,7 @@ jobs: run: yarn install --frozen-lockfile - name: Test with Coverage - run: yarn test:coverage + run: yarn coverage - name: ESLint run: yarn eslint diff --git a/package.json b/package.json index da685e1..c3e519a 100644 --- a/package.json +++ b/package.json @@ -31,7 +31,7 @@ "build": "vue-tsc --noEmit && vite build", "preview": "vite preview --port 5050", "test": "vitest --environment jsdom", - "test:coverage": "vitest run --environment jsdom --coverage --reporter dot", + "coverage": "vitest --run --coverage --environment jsdom --silent", "typecheck": "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" },