This section explains how to upgrade the project's Rstest dependencies to the latest version.
Rstest is still in 0.x version stage, and the API may change frequently. We recommend upgrading to the latest version to access new features and bug fixes.
We recommend using Taze to upgrade the Rstest version. Taze is a CLI tool for updating npm dependencies.
Run the following command to upgrade all dependencies that include rstest and rsbuild in their names:
npx taze major --include "/(rstest|rsbuild)/" -w
Rstest has not yet reached version 1.0.0, so you need to add the major parameter when updating.
The result will look similar to:
rstest-example - 1 patch
devDependencies
@rstest/core ~29d ^0.6.0 → ^0.6.6 ~5d
ℹ changes written to package.json, run pnpm i to install updates.You can also adjust the include pattern to match specific packages, for example, to upgrade only packages under the @rstest scope:
npx taze --include /@rstest/ -wHere are some examples of using taze options.
-r option to upgrade recursively:npx taze --include /(rstest|rsbuild)/ -w -r-l to upgrade locked versions:npx taze --include /(rstest|rsbuild)/ -w -lnpx taze major --include /(rstest|rsbuild)/ -wFor more options, please refer to the taze documentation.