34de4ba6dc
* Adds support form FormulateError form errors * Adds support for form-errors prop Also includes tests for both named-form-errors as well, form-errors prop, positioning form errors with the <FormulateErrors /> component, and allowing multiple <FormulateErrors /> * Adds form error support, error handling, and supporting tests * Remove unused util functions * Adds german localization locales/de.js (#14) * Create de.js * Added startsWith and endsWith * adds build process for localization support, removes dist * Adds danish localization * fixes bug that resulted in validation failing if run more than once Credit to @luan-nk-nguyen for discovering the bug * Moves locales to vue-formulate-i18n * Adds dist files for locales * Adds vue-formulate-i18n 1.0.1 * Uses i18n 1.0.3 * Build files * Fixes #19 * Update src/locales/README.md Co-Authored-By: Andrew Boyd <andrew@wearebraid.com> * changes v-html to v-text for error message output credit to @skix123 for the bug report! Co-authored-by: Andrew Boyd <andrew@wearebraid.com>
29 lines
1.1 KiB
JavaScript
29 lines
1.1 KiB
JavaScript
import Vue from 'vue'
|
|
import { mount } from '@vue/test-utils'
|
|
import Formulate from '@/Formulate.js'
|
|
import FormulateInput from '@/FormulateInput.vue'
|
|
import FormulateInputSlider from '@/inputs/FormulateInputSlider.vue'
|
|
|
|
Vue.use(Formulate)
|
|
|
|
/**
|
|
* Test each type of slider element
|
|
*/
|
|
|
|
describe('FormulateInputSlider', () => {
|
|
it('renders range input when type is "range"', () => {
|
|
const wrapper = mount(FormulateInput, { propsData: { type: 'range' } })
|
|
expect(wrapper.contains(FormulateInputSlider)).toBe(true)
|
|
})
|
|
|
|
it('does not show value if the show-value prop is not set', () => {
|
|
const wrapper = mount(FormulateInput, { propsData: { type: 'range', value: '15', min: '0', max: '100' } })
|
|
expect(wrapper.find('.formulate-input-element-range-value').exists()).toBe(false)
|
|
})
|
|
|
|
it('renders the value when type is "range" and show-value prop is set', () => {
|
|
const wrapper = mount(FormulateInput, { propsData: { type: 'range', showValue: 'true', value: '15', min: '0', max: '100' } })
|
|
expect(wrapper.find('.formulate-input-element-range-value').text()).toBe('15')
|
|
})
|
|
})
|