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:
@@ -4,4 +4,3 @@ language: node_js
|
||||
# - node_modules
|
||||
node_js:
|
||||
- "7"
|
||||
- "6"
|
||||
|
||||
@@ -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')
|
||||
|
||||
Reference in New Issue
Block a user