2
0
mirror of https://github.com/tenrok/vue-select.git synced 2026-06-19 09:50:33 +03:00

Changed test to call select instead of set

But no idea why value is readonly property.
This commit is contained in:
akkinenirajesh
2016-10-20 08:05:14 +05:30
committed by GitHub
parent e34e39707c
commit b2c201dde9
+7 -7
View File
@@ -131,22 +131,22 @@ describe('Select.vue', () => {
var select = vm.$children[0] var select = vm.$children[0]
expect(select.isValueEmpty).toEqual(true) expect(select.isValueEmpty).toEqual(true)
select.$set('value', ['one']) select.select(['one'])
expect(select.isValueEmpty).toEqual(false) expect(select.isValueEmpty).toEqual(false)
select.$set('value', [{l: 'f'}]) select.select([{l: 'f'}])
expect(select.isValueEmpty).toEqual(false) expect(select.isValueEmpty).toEqual(false)
select.$set('value', 'one') select.select('one')
expect(select.isValueEmpty).toEqual(false) expect(select.isValueEmpty).toEqual(false)
select.$set('value', {label: 'foo', value: 'foo'}) select.select({label: 'foo', value: 'foo'})
expect(select.isValueEmpty).toEqual(false) expect(select.isValueEmpty).toEqual(false)
select.$set('value', '') select.select('')
expect(select.isValueEmpty).toEqual(true) expect(select.isValueEmpty).toEqual(true)
select.$set('value', null) select.select(null)
expect(select.isValueEmpty).toEqual(true) expect(select.isValueEmpty).toEqual(true)
}) })
@@ -896,4 +896,4 @@ describe('Select.vue', () => {
}) })
}) })
}) })
}) })