Skip to content

Commit b5ffdda

Browse files
committed
Run prettier
1 parent 5c63cc6 commit b5ffdda

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

test/specs/shallow-mount.spec.js

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -114,16 +114,13 @@ describeRunIf(process.env.TEST_ENV !== 'node', 'shallowMount', () => {
114114
localVue
115115
})
116116

117-
expect(wrapper.find({ name: 'Foo' }).exists()).to.equal(true);
118-
expect(wrapper.find(".new-example").exists()).to.equal(true);
117+
expect(wrapper.find({ name: 'Foo' }).exists()).to.equal(true)
118+
expect(wrapper.find('.new-example').exists()).to.equal(true)
119119
expect(wrapper.html()).to.equal(
120-
'<foo-stub>\n' +
121-
' <p class="new-example">text</p>\n' +
122-
'</foo-stub>'
120+
'<foo-stub>\n' + ' <p class="new-example">text</p>\n' + '</foo-stub>'
123121
)
124122
})
125123

126-
127124
it('renders no children if none supplied', () => {
128125
const TestComponent = {
129126
template: '<child />',

0 commit comments

Comments
 (0)