Permalink
Cannot retrieve contributors at this time
81 lines (80 sloc)
2.59 KB
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
codeql-action/node_modules/eslint-plugin-jsx-a11y/__tests__/src/util/isDisabledElement-test.js
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); | |
}); | |
}); | |
}); | |
}); |