Merge branch 'release/2025.07.31' into feature/CASH-1158

This commit is contained in:
Johnny Shultz 2025-07-14 16:05:52 -04:00 committed by GitHub
commit ea8eb46f49
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 1 deletions

View file

@ -1,6 +1,6 @@
module.exports = {
verbose: true,
coverageReporters: ["html", "text", "jest-junit", "cobertura"],
coverageReporters: ["html", "text", "jest-junit", "cobertura"], reporters: ['default', 'jest-junit'],
testResultsProcessor: "jest-junit",
preset: "@vue/cli-plugin-unit-jest",
transform: { "^.+\\.vue$": "@vue/vue3-jest",

View file

@ -7,6 +7,7 @@
"serve": "npx prettier --write src && vue-cli-service serve",
"build": "vue-cli-service build",
"test:unit": "vue-cli-service test:unit --coverage --ci",
"test:unit:coverage": "vue-cli-service test:unit --coverage --ci",
"test:unit:lite": "vue-cli-service test:unit --ci",
"lint": "vue-cli-service lint"
},