mirror of
https://github.com/tenrok/vue-form-wizard.git
synced 2026-06-22 10:00:32 +03:00
Remove node 6 from travis config
This commit is contained in:
@@ -4,4 +4,3 @@ language: node_js
|
|||||||
# - node_modules
|
# - node_modules
|
||||||
node_js:
|
node_js:
|
||||||
- "7"
|
- "7"
|
||||||
- "6"
|
|
||||||
|
|||||||
@@ -35,7 +35,7 @@ describe('FormWizard.vue', () => {
|
|||||||
})
|
})
|
||||||
it('renders steps', () => {
|
it('renders steps', () => {
|
||||||
const wizard = mount(twoStepWizard, {localVue})
|
const wizard = mount(twoStepWizard, {localVue})
|
||||||
Vue.nextTick(()=>{
|
Vue.nextTick(() => {
|
||||||
const steps = wizard.findAll(WizardStep)
|
const steps = wizard.findAll(WizardStep)
|
||||||
const firsStep = steps.at(0)
|
const firsStep = steps.at(0)
|
||||||
expect(steps.length).to.equal(3)
|
expect(steps.length).to.equal(3)
|
||||||
@@ -84,7 +84,7 @@ describe('FormWizard.vue', () => {
|
|||||||
it('styles step with background color', (done) => {
|
it('styles step with background color', (done) => {
|
||||||
const wizard = mount(twoStepWizard, {localVue})
|
const wizard = mount(twoStepWizard, {localVue})
|
||||||
const formWizard = wizard.find(FormWizard)
|
const formWizard = wizard.find(FormWizard)
|
||||||
Vue.nextTick(()=>{
|
Vue.nextTick(() => {
|
||||||
const steps = wizard.findAll(WizardStep)
|
const steps = wizard.findAll(WizardStep)
|
||||||
console.log(steps)
|
console.log(steps)
|
||||||
var stepContainer = steps.at(0).find('.wizard-icon-container')
|
var stepContainer = steps.at(0).find('.wizard-icon-container')
|
||||||
|
|||||||
Reference in New Issue
Block a user