Skip to content

Commit 4b30da2

Browse files
Build(deps-dev): Bump vitest from 4.0.3 to 4.1.0 (#1176)
* Build(deps-dev): Bump vitest from 4.0.3 to 4.1.0 Bumps [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) from 4.0.3 to 4.1.0. - [Release notes](https://github.com/vitest-dev/vitest/releases) - [Commits](https://github.com/vitest-dev/vitest/commits/v4.1.0/packages/vitest) --- updated-dependencies: - dependency-name: vitest dependency-version: 4.1.0 dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * test(roslib): toThrowError -> toThrow --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Matthijs van der Burgh <matthijs.van.der.burgh@vbti.nl>
1 parent ac95dec commit 4b30da2

3 files changed

Lines changed: 106 additions & 78 deletions

File tree

package-lock.json

Lines changed: 104 additions & 76 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/roslib/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
"vite-plugin-checker": "^0.12.0",
4040
"vite-plugin-dts": "^4.0.2",
4141
"vite-plugin-externalize-deps": "^0.10.0",
42-
"vitest": "^4.0.3",
42+
"vitest": "^4.1.0",
4343
"vitest-fail-on-console": "^0.10.1"
4444
},
4545
"dependencies": {

packages/roslib/test/urdfjoint.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ describe("UrdfJoint", () => {
6161
if (!xml) {
6262
throw new Error("Failed to parse XML");
6363
}
64-
expect(() => new UrdfJoint({ xml })).toThrowError(
64+
expect(() => new UrdfJoint({ xml })).toThrow(
6565
"If specified, axis must have an xyz value composed of three numbers",
6666
);
6767
});

0 commit comments

Comments
 (0)