chore(coldwired): update utils
This commit is contained in:
parent
0f608444b5
commit
c93141d8bb
7 changed files with 53 additions and 188 deletions
|
@ -1,14 +1,6 @@
|
|||
import { suite, test, expect } from 'vitest';
|
||||
|
||||
import {
|
||||
show,
|
||||
hide,
|
||||
toggle,
|
||||
toggleExpandIcon,
|
||||
isSelectElement,
|
||||
isTextInputElement,
|
||||
isCheckboxOrRadioInputElement
|
||||
} from './utils';
|
||||
import { show, hide, toggle, toggleExpandIcon } from './utils';
|
||||
|
||||
suite('@utils', () => {
|
||||
test('show', () => {
|
||||
|
@ -46,79 +38,4 @@ suite('@utils', () => {
|
|||
expect(icon.classList.contains('fr-icon-arrow-down-s-line')).toBeTruthy();
|
||||
expect(icon.classList.contains('fr-icon-arrow-up-s-line')).toBeFalsy();
|
||||
});
|
||||
|
||||
test('isSelectElement', () => {
|
||||
const select = document.createElement('select');
|
||||
const input = document.createElement('input');
|
||||
const textarea = document.createElement('textarea');
|
||||
|
||||
expect(isSelectElement(select)).toBeTruthy();
|
||||
expect(isSelectElement(input)).toBeFalsy();
|
||||
expect(isSelectElement(textarea)).toBeFalsy();
|
||||
|
||||
input.type = 'text';
|
||||
expect(isSelectElement(input)).toBeFalsy();
|
||||
|
||||
input.type = 'email';
|
||||
expect(isSelectElement(input)).toBeFalsy();
|
||||
|
||||
input.type = 'checkbox';
|
||||
expect(isSelectElement(input)).toBeFalsy();
|
||||
|
||||
input.type = 'radio';
|
||||
expect(isSelectElement(input)).toBeFalsy();
|
||||
|
||||
input.type = 'file';
|
||||
expect(isSelectElement(input)).toBeFalsy();
|
||||
});
|
||||
|
||||
test('isTextInputElement', () => {
|
||||
const select = document.createElement('select');
|
||||
const input = document.createElement('input');
|
||||
const textarea = document.createElement('textarea');
|
||||
|
||||
expect(isTextInputElement(select)).toBeFalsy();
|
||||
expect(isTextInputElement(input)).toBeTruthy();
|
||||
expect(isTextInputElement(textarea)).toBeTruthy();
|
||||
|
||||
input.type = 'text';
|
||||
expect(isTextInputElement(input)).toBeTruthy();
|
||||
|
||||
input.type = 'email';
|
||||
expect(isTextInputElement(input)).toBeTruthy();
|
||||
|
||||
input.type = 'checkbox';
|
||||
expect(isTextInputElement(input)).toBeFalsy();
|
||||
|
||||
input.type = 'radio';
|
||||
expect(isTextInputElement(input)).toBeFalsy();
|
||||
|
||||
input.type = 'file';
|
||||
expect(isTextInputElement(input)).toBeFalsy();
|
||||
});
|
||||
|
||||
test('isCheckboxOrRadioInputElement', () => {
|
||||
const select = document.createElement('select');
|
||||
const input = document.createElement('input');
|
||||
const textarea = document.createElement('textarea');
|
||||
|
||||
expect(isCheckboxOrRadioInputElement(select)).toBeFalsy();
|
||||
expect(isCheckboxOrRadioInputElement(input)).toBeFalsy();
|
||||
expect(isCheckboxOrRadioInputElement(textarea)).toBeFalsy();
|
||||
|
||||
input.type = 'text';
|
||||
expect(isCheckboxOrRadioInputElement(input)).toBeFalsy();
|
||||
|
||||
input.type = 'email';
|
||||
expect(isCheckboxOrRadioInputElement(input)).toBeFalsy();
|
||||
|
||||
input.type = 'checkbox';
|
||||
expect(isCheckboxOrRadioInputElement(input)).toBeTruthy();
|
||||
|
||||
input.type = 'radio';
|
||||
expect(isCheckboxOrRadioInputElement(input)).toBeTruthy();
|
||||
|
||||
input.type = 'file';
|
||||
expect(isCheckboxOrRadioInputElement(input)).toBeFalsy();
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue