We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0553e74 + dcf230c commit 59669dbCopy full SHA for 59669db
README.md
@@ -44,7 +44,7 @@ You may also be interested in installing `jest-dom` so you can use
44
## Examples
45
46
```html
47
-<!-- src/TestComponent.vue -->
+<!-- TestComponent.vue -->
48
<template>
49
<div>
50
<p>Times clicked: {{ count }}</p>
@@ -67,9 +67,9 @@ export default {
67
```
68
69
```js
70
-// src/TestComponent.spec.js
+// TestComponent.spec.js
71
import { render, fireEvent, cleanup } from '@testing-library/vue'
72
-import TestComponent from './components/TestComponent.vue'
+import TestComponent from './TestComponent.vue'
73
74
// automatically unmount and cleanup DOM after the test is finished.
75
afterEach(cleanup)
0 commit comments