Skip to content

Commit

Permalink
test: update test dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Rohan Bansal committed Apr 26, 2024
1 parent 0bd77d2 commit 3ad8779
Show file tree
Hide file tree
Showing 5 changed files with 153 additions and 102 deletions.
8 changes: 4 additions & 4 deletions aform/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,18 +55,18 @@
"@typescript-eslint/eslint-plugin": "^7.6.0",
"@typescript-eslint/parser": "^7.6.0",
"@vitejs/plugin-vue": "^5.0.4",
"@vitest/coverage-istanbul": "^1.5.0",
"@vitest/ui": "^1.5.0",
"@vitest/coverage-istanbul": "^1.5.2",
"@vitest/ui": "^1.5.2",
"@vue/test-utils": "^2.4.5",
"cypress": "^12.11.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-vue": "^9.11.1",
"eslint": "^8.40.0",
"histoire": "^0.17.17",
"jsdom": "^22.0.0",
"jsdom": "^24.0.0",
"typescript": "^5.4.5",
"vite": "^5.2.9",
"vitest": "^1.5.0",
"vitest": "^1.5.2",
"vue-router": "^4"
},
"peerDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion aform/vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ export default defineConfig({
globals: true,
environment: 'jsdom',
coverage: {
enabled: true,
provider: 'istanbul',
reporter: ['text', 'json-summary', 'json'], // required for Github Actions CI
reportOnFailure: true,
Expand All @@ -54,7 +55,6 @@ export default defineConfig({
...coverageConfigDefaults.exclude,
'**/*.setup.ts', // ignore histoire setup files
'src/index.ts', // ignore the entry file
'src/components/form/AComboBox.vue', // ignore AComboBox template coverage
'stories/**', // ignore histoire storybook files
'types/**', // ignore types
],
Expand Down
8 changes: 4 additions & 4 deletions atable/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,18 +55,18 @@
"@typescript-eslint/eslint-plugin": "^7.6.0",
"@typescript-eslint/parser": "^7.6.0",
"@vitejs/plugin-vue": "^5.0.4",
"@vitest/coverage-istanbul": "^1.5.0",
"@vitest/ui": "^1.5.0",
"@vitest/coverage-istanbul": "^1.5.2",
"@vitest/ui": "^1.5.2",
"@vue/test-utils": "^2.4.5",
"cypress": "^12.11.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-vue": "^9.11.1",
"eslint": "^8.40.0",
"histoire": "^0.17.17",
"jsdom": "^22.0.0",
"jsdom": "^24.0.0",
"typescript": "^5.4.5",
"vite": "^5.2.9",
"vitest": "^1.5.0",
"vitest": "^1.5.2",
"vue-router": "^4"
},
"peerDependencies": {
Expand Down
1 change: 1 addition & 0 deletions atable/vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ export default defineConfig({
globals: true,
environment: 'jsdom',
coverage: {
enabled: true,
provider: 'istanbul',
reporter: ['text', 'json-summary', 'json'], // required for Github Actions CI
reportOnFailure: true,
Expand Down
Loading

0 comments on commit 3ad8779

Please sign in to comment.