test script fix

pull/3449/head
Tuğçe Küçükoğlu 2022-12-27 13:45:24 +03:00
parent 5ce92f674e
commit 985151c0d8
1 changed files with 2 additions and 2 deletions

View File

@ -19,8 +19,8 @@
"security:check": "npm audit --production --audit-level high",
"format": "prettier --write \"**/*.{js,vue,d.ts}\"",
"format:check": "prettier --check \"**/*.{js,vue,d.ts}\"",
"test:unit": "vitest",
"test:coverage": "vitest --coverage",
"test:unit": "vitest run",
"test:coverage": "vitest run --coverage",
"lint": "eslint --ext \".js,.vue\" --ignore-path .gitignore .",
"lint:fix": "eslint --fix --ext \".js,.vue\" --ignore-path .gitignore ."
},