Skip to content

Commit 15fdd87

Browse files
committed
Remove mounting text
1 parent 4795af4 commit 15fdd87

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

tests/unmount.spec.ts

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,12 @@ import { defineComponent } from 'vue'
22

33
import { mount } from '../src'
44

5-
const AXIOM = 'Rem is the best girl'
6-
75
describe('Unmount', () => {
86
it('works on single root component', () => {
97
const errorHandler = jest.fn()
108
const Component = {
119
template: `
12-
<div>${AXIOM}</div>
10+
<div></div>
1311
`
1412
}
1513
const wrapper = mount(Component, {
@@ -28,8 +26,8 @@ describe('Unmount', () => {
2826
const errorHandler = jest.fn()
2927
const Component = defineComponent({
3028
template: `
31-
<div>${AXIOM}</div>
32-
<div>${AXIOM}</div>
29+
<div></div>
30+
<div></div>
3331
`
3432
})
3533
const wrapper = mount(Component, {

0 commit comments

Comments
 (0)