Skip to content

Commit

Permalink
Fix build (linting errors)
Browse files Browse the repository at this point in the history
  • Loading branch information
jbuget committed Jun 26, 2017
1 parent 63cbfab commit 4817926
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion client/src/components/LoginPage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
});
},
onSignInError(error) {
onSignInError() {
},
},
Expand Down
6 changes: 3 additions & 3 deletions client/test/unit/specs/components/AppHeader.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ describe('Unit | Component | AppHeader.vue', () => {
});

describe('rendering', () => {
it('should display a link to home', () => {
expect(component.$el.querySelector('.logo-link')).to.exist;
})
it('should display a link to home', () => {
expect(component.$el.querySelector('.logo-link')).to.exist;
});
});

describe('#signOut', () => {
Expand Down

0 comments on commit 4817926

Please sign in to comment.