project bootstrap

This commit is contained in:
2023-11-25 18:12:47 -05:00
parent 5cd875ae80
commit 6ef22d88f9
39139 changed files with 4944609 additions and 2 deletions
@@ -0,0 +1,81 @@
import expect from 'expect';
import isDisabledElement from '../../../src/util/isDisabledElement';
import JSXAttributeMock from '../../../__mocks__/JSXAttributeMock';
describe('isDisabledElement', () => {
describe('HTML5', () => {
describe('disabled', () => {
it('should identify HTML5 disabled elements', () => {
const attributes = [
JSXAttributeMock('disabled', 'disabled'),
];
expect(isDisabledElement(attributes))
.toBe(true);
});
});
describe('not disabled', () => {
it('should identify HTML5 disabled elements with null as the value', () => {
const attributes = [
JSXAttributeMock('disabled', null),
];
expect(isDisabledElement(attributes))
.toBe(true);
});
it('should not identify HTML5 disabled elements with undefined as the value', () => {
const attributes = [
JSXAttributeMock('disabled', undefined),
];
expect(isDisabledElement(attributes))
.toBe(false);
});
});
});
describe('ARIA', () => {
describe('disabled', () => {
it('should not identify ARIA disabled elements', () => {
const attributes = [
JSXAttributeMock('aria-disabled', 'true'),
];
expect(isDisabledElement(attributes))
.toBe(true);
});
it('should not identify ARIA disabled elements', () => {
const attributes = [
JSXAttributeMock('aria-disabled', true),
];
expect(isDisabledElement(attributes))
.toBe(true);
});
});
describe('not disabled', () => {
it('should not identify ARIA disabled elements', () => {
const attributes = [
JSXAttributeMock('aria-disabled', 'false'),
];
expect(isDisabledElement(attributes))
.toBe(false);
});
it('should not identify ARIA disabled elements', () => {
const attributes = [
JSXAttributeMock('aria-disabled', false),
];
expect(isDisabledElement(attributes))
.toBe(false);
});
it('should not identify ARIA disabled elements with null as the value', () => {
const attributes = [
JSXAttributeMock('aria-disabled', null),
];
expect(isDisabledElement(attributes))
.toBe(false);
});
it('should not identify ARIA disabled elements with undefined as the value', () => {
const attributes = [
JSXAttributeMock('aria-disabled', undefined),
];
expect(isDisabledElement(attributes))
.toBe(false);
});
});
});
});