Skip to content
This repository has been archived by the owner on Sep 23, 2021. It is now read-only.

Commit

Permalink
Minor eslint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
scottbedard committed Apr 30, 2017
1 parent 0da1471 commit 2d85273
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/unit/specs/example.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ describe('src/pages/home/home.vue', () => {
// define it. In tests, make sure it is abstract.
const MockRouter = new VueRouter({
abstract: true,
routes: [{ name: 'videos', path: '/videos', },],
routes: [{ name: 'videos', path: '/videos' }],
});

// Inside of our test environment, we have access
// to Vue's template compiler. This enables us
// to render a test component in templates.
const vm = new Vue({
components: { 'v-home-page': HomePageComponent, },
components: { 'v-home-page': HomePageComponent },
el: document.createElement('div'),
router: MockRouter,
template: '<v-home-page></v-home-page>',
Expand Down

0 comments on commit 2d85273

Please sign in to comment.