Skip to content

Commit 8648135

Browse files
committed
docs: mention test runners
1 parent abeb915 commit 8648135

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

docs/guide/index.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,13 @@ test('displays message', () => {
3636
})
3737
```
3838

39+
Vue Test Utils is commonly used with a test runner. Popular test runners include:
40+
41+
- [Vitest](https://vitest.dev/)
42+
- [Cypress](https://cypress.io/)
43+
44+
Vue Test Utils is a minimal and unopinionated library. For something more featureful, ergonomic and opinionated you may want to consider [Cypress Component Testing](https://docs.cypress.io/guides/component-testing/overview), which uses Vue Test Utils under the hood. It runs in a browser, so you can see your components rendered as the tests execute.
45+
3946
## What Next?
4047

4148
To see Vue Test Utils in action, [take the Crash Course](../guide/essentials/a-crash-course.md), where we build a simple Todo app using a test-first approach.

0 commit comments

Comments
 (0)