We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
await expect(() => ...).rejects.toThrowError()
.catch
node -e "require('fs').writeFileSync(..., ...)"
bash -c echo ... > ...
memfs
persist.spec.ts
vitest-memfs-poc
process.exit
The text was updated successfully, but these errors were encountered:
matejchalk
Successfully merging a pull request may close this issue.
await expect(() => ...).rejects.toThrowError()
instead of error spies with.catch
(improves test failure messages)node -e "require('fs').writeFileSync(..., ...)"
instead ofbash -c echo ... > ...
(platform-indepedence)memfs
for testing persist logic (seepersist.spec.ts
) with different formats (instead of real file-system) - seevitest-memfs-poc
branchprocess.exit
in Yargs testsRefactor: Platform-independant plugin runner
Refactor: Testing errors
The text was updated successfully, but these errors were encountered: