We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4795af4 commit 15fdd87Copy full SHA for 15fdd87
tests/unmount.spec.ts
@@ -2,14 +2,12 @@ import { defineComponent } from 'vue'
2
3
import { mount } from '../src'
4
5
-const AXIOM = 'Rem is the best girl'
6
-
7
describe('Unmount', () => {
8
it('works on single root component', () => {
9
const errorHandler = jest.fn()
10
const Component = {
11
template: `
12
- <div>${AXIOM}</div>
+ <div></div>
13
`
14
}
15
const wrapper = mount(Component, {
@@ -28,8 +26,8 @@ describe('Unmount', () => {
28
26
29
27
const Component = defineComponent({
30
31
32
33
34
})
35
0 commit comments