1
0
mirror of synced 2024-11-22 13:26:06 +03:00
vue-formulario/test/Formulate.test.js
2019-11-01 14:47:25 -04:00

68 lines
1.2 KiB
JavaScript

import Formulate from '../src/Formulate'
test('can extend simple object', () => {
let a = {
optionA: true,
optionB: '1234'
}
let b = {
optionA: false
}
expect(Formulate.extend(a, b)).toEqual({
optionA: false,
optionB: '1234'
})
})
test('can extend recursively', () => {
let a = {
optionA: true,
optionC: {
first: '123',
third: {
a: 'b'
}
},
optionB: '1234'
}
let b = {
optionB: '567',
optionC: {
first: '1234',
second: '789',
}
}
expect(Formulate.extend(a, b)).toEqual({
optionA: true,
optionC: {
first: '1234',
third: {
a: 'b'
},
second: '789'
},
optionB: '567'
})
})
test('installs on vue instance', () => {
const components = [
'FormulateForm',
'FormulateInput',
'FormulateInputBox',
'FormulateInputText',
'FormulateInputGroup',
'FormulateInputSelect',
'FormulateInputTextArea'
]
const registry = []
function Vue () {}
Vue.component = function (name, instance) {
registry.push(name)
}
Formulate.install(Vue, { extended: true })
expect(Vue.prototype.$formulate).toBe(Formulate)
expect(registry).toEqual(components)
})