2
0
mirror of https://github.com/tenrok/vue-form-wizard.git synced 2026-06-05 10:22:23 +03:00

Remove node 6 from travis config

This commit is contained in:
cristijora
2017-10-18 20:21:53 +03:00
parent f903a6ef32
commit a520cb5caf
2 changed files with 2 additions and 3 deletions
-1
View File
@@ -4,4 +4,3 @@ language: node_js
# - node_modules
node_js:
- "7"
- "6"
+2 -2
View File
@@ -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')