Skip to content

Commit 982f0eb

Browse files
author
Walker Leite
committed
fix(lint): fix lint errors
1 parent 02dc21d commit 982f0eb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

template/test/client/app.spec.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ describe('App.vue', () => {
2929
});
3030
{{else}}
3131
it('should render correct content', () => {
32-
const vm = new Constructor().$mount();
32+
const newVm = new Constructor().$mount();
3333
return Vue.nextTick().then(() => {
34-
expect(vm.$el.innerHTML).to.equal('Hello World!');
34+
expect(newVm.$el.innerHTML).to.equal('Hello World!');
3535
});
3636
});
3737
{{/extended}}

0 commit comments

Comments
 (0)