-
Notifications
You must be signed in to change notification settings - Fork 405
/
Copy pathmatchers.js
27 lines (27 loc) · 1.41 KB
/
matchers.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
export {toBeInTheDOM} from './to-be-in-the-dom'
export {toBeInTheDocument} from './to-be-in-the-document'
export {toBeEmpty} from './to-be-empty'
export {toBeEmptyDOMElement} from './to-be-empty-dom-element'
export {toContainElement} from './to-contain-element'
export {toContainHTML} from './to-contain-html'
export {toHaveTextContent} from './to-have-text-content'
export {toHaveAccessibleDescription} from './to-have-accessible-description'
export {toHaveAccessibleErrorMessage} from './to-have-accessible-errormessage'
export {toHaveRole} from './to-have-role'
export {toHaveAccessibleName} from './to-have-accessible-name'
export {toHaveAttribute} from './to-have-attribute'
export {toHaveClass} from './to-have-class'
export {toHaveStyle} from './to-have-style'
export {toHaveFocus} from './to-have-focus'
export {toHaveFormValues} from './to-have-form-values'
export {toBeVisible} from './to-be-visible'
export {toBeDisabled, toBeEnabled} from './to-be-disabled'
export {toBeRequired} from './to-be-required'
export {toBeInvalid, toBeValid} from './to-be-invalid'
export {toHaveValue} from './to-have-value'
export {toHaveDisplayValue} from './to-have-display-value'
export {toBeChecked} from './to-be-checked'
export {toBePartiallyChecked} from './to-be-partially-checked'
export {toHaveDescription} from './to-have-description'
export {toHaveErrorMessage} from './to-have-errormessage'
export {toHaveSelection} from './to-have-selection'