From a520cb5caffea5f567f6c6e63dec7c291de4a78d Mon Sep 17 00:00:00 2001 From: cristijora Date: Wed, 18 Oct 2017 20:21:53 +0300 Subject: [PATCH] Remove node 6 from travis config --- .travis.yml | 1 - test/unit/specs/FormWizard.spec.js | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) 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')