diff --git a/.travis.yml b/.travis.yml index c486d3b..3a7e97e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,4 +4,3 @@ language: node_js # - node_modules node_js: - "7" - - "6" diff --git a/test/unit/specs/FormWizard.spec.js b/test/unit/specs/FormWizard.spec.js index adafd6e..74b7290 100644 --- a/test/unit/specs/FormWizard.spec.js +++ b/test/unit/specs/FormWizard.spec.js @@ -35,7 +35,7 @@ describe('FormWizard.vue', () => { }) it('renders steps', () => { const wizard = mount(twoStepWizard, {localVue}) - Vue.nextTick(()=>{ + Vue.nextTick(() => { const steps = wizard.findAll(WizardStep) const firsStep = steps.at(0) expect(steps.length).to.equal(3) @@ -84,7 +84,7 @@ describe('FormWizard.vue', () => { it('styles step with background color', (done) => { const wizard = mount(twoStepWizard, {localVue}) const formWizard = wizard.find(FormWizard) - Vue.nextTick(()=>{ + Vue.nextTick(() => { const steps = wizard.findAll(WizardStep) console.log(steps) var stepContainer = steps.at(0).find('.wizard-icon-container')