Skip to content

Commit

Permalink
fix(test): fix lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
Walker Leite committed Dec 13, 2017
1 parent 070b19e commit d865b79
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion template/test/client/components/HelloWorld.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@ describe('HelloWorld.vue', () => {
it('should render correct content', () => {
const vm = new Constructor().$mount();
return Vue.nextTick().then(() => {
expect(vm.$el.innerHTML).to.include('Hello World! This content is restricted.');
expect(vm.$el.innerHTML).to.include(
'Hello World! This content is restricted.'
);
});
});
});

0 comments on commit d865b79

Please sign in to comment.