|
| 1 | +/** |
| 2 | + * @copyright Copyright (c) 2024 Ferdinand Thiessen <[email protected]> |
| 3 | + * |
| 4 | + * @author Ferdinand Thiessen <[email protected]> |
| 5 | + * |
| 6 | + * @license AGPL-3.0-or-later |
| 7 | + * |
| 8 | + * This program is free software: you can redistribute it and/or modify |
| 9 | + * it under the terms of the GNU Affero General Public License as |
| 10 | + * published by the Free Software Foundation, either version 3 of the |
| 11 | + * License, or (at your option) any later version. |
| 12 | + * |
| 13 | + * This program is distributed in the hope that it will be useful, |
| 14 | + * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 15 | + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 16 | + * GNU Affero General Public License for more details. |
| 17 | + * |
| 18 | + * You should have received a copy of the GNU Affero General Public License |
| 19 | + * along with this program. If not, see <http://www.gnu.org/licenses/>. |
| 20 | + * |
| 21 | + */ |
| 22 | + |
| 23 | +import { shallowMount } from '@vue/test-utils' |
| 24 | +import NcCheckboxRadioSwitch from '../../../../src/components/NcCheckboxRadioSwitch/NcCheckboxRadioSwitch.vue' |
| 25 | + |
| 26 | +describe('NcCheckboxRadioSwitch', () => { |
| 27 | + it('sets text content', () => { |
| 28 | + const wrapper = shallowMount(NcCheckboxRadioSwitch, { |
| 29 | + slots: { |
| 30 | + default: 'Test', |
| 31 | + }, |
| 32 | + }) |
| 33 | + |
| 34 | + expect(wrapper.text()).toContain('Test') |
| 35 | + }) |
| 36 | + |
| 37 | + it('forwards aria-invalid and aria-errormessage to input', () => { |
| 38 | + const wrapper = shallowMount(NcCheckboxRadioSwitch, { |
| 39 | + slots: { |
| 40 | + default: 'Test', |
| 41 | + }, |
| 42 | + attrs: { |
| 43 | + 'aria-invalid': 'true', |
| 44 | + 'aria-errormessage': 'id-test', |
| 45 | + }, |
| 46 | + }) |
| 47 | + |
| 48 | + const input = wrapper.find('input') |
| 49 | + expect(input.attributes('aria-invalid')).toBe('true') |
| 50 | + expect(input.attributes('aria-errormessage')).toBe('id-test') |
| 51 | + }) |
| 52 | +}) |
0 commit comments