Skip to content

Commit

Permalink
Merge pull request #1071 from chantouchsek/dependabot/npm_and_yarn/mu…
Browse files Browse the repository at this point in the history
…lti-8d71970c01

chore(deps-dev): bump vitest and @vitest/coverage-v8
  • Loading branch information
chantouchsek committed May 8, 2024
2 parents 35803b1 + 3ddf336 commit 3791b49
Show file tree
Hide file tree
Showing 3 changed files with 221 additions and 195 deletions.
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,12 +50,12 @@
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@nuxt/types": "^2.17.3",
"@types/lodash": "^4.17.0",
"@types/node": "^20.12.7",
"@types/lodash": "^4.17.1",
"@types/node": "^20.12.10",
"@types/qs": "^6.9.15",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@vitest/coverage-v8": "^0.34.6",
"@vitest/coverage-v8": "^1.6.0",
"@vue/test-utils": "^1.3.6",
"axios-mock-adapter": "^1.22.0",
"eslint": "^8.57.0",
Expand All @@ -70,12 +70,12 @@
"nuxt": "^2.17.3",
"prettier": "^2.8.8",
"rimraf": "^5.0.5",
"sass": "^1.75.0",
"sass": "^1.77.0",
"standard-version": "^9.5.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.5",
"vite": "^5.2.10",
"vitest": "^0.34.6",
"vite": "^5.2.11",
"vitest": "^1.6.0",
"vue": "^2.7.16"
},
"files": [
Expand Down
8 changes: 4 additions & 4 deletions src/__tests__/__snapshots__/package.spec.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ exports[`Vue Api Queries > Get errors from vue component 1`] = `
"staticRenderFns": [],
"template": "
<div>
<input type=\\"checkbox\\" name=\\"t1\\" class=\\"foo\\" v-model=\\"t1\\" />
<input type=\\"radio\\" name=\\"t2\\" class=\\"foo\\" value=\\"foo\\" v-model=\\"t2\\"/>
<input type=\\"radio\\" name=\\"t2\\" class=\\"bar\\" value=\\"bar\\" v-model=\\"t2\\"/>
<span id=\\"age\\">{{ $errors.first('age') }}</span>
<input type="checkbox" name="t1" class="foo" v-model="t1" />
<input type="radio" name="t2" class="foo" value="foo" v-model="t2"/>
<input type="radio" name="t2" class="bar" value="bar" v-model="t2"/>
<span id="age">{{ $errors.first('age') }}</span>
</div>",
}
`;
Expand Down
Loading

0 comments on commit 3791b49

Please sign in to comment.