File tree Expand file tree Collapse file tree 2 files changed +16
-15
lines changed Expand file tree Collapse file tree 2 files changed +16
-15
lines changed Original file line number Diff line number Diff line change 11import { toBeDisabled , toBeEnabled } from './to-be-disabled' ;
22import { toBeEmptyElement , toBeEmpty } from './to-be-empty-element' ;
33import { toBeOnTheScreen } from './to-be-on-the-screen' ;
4+ import { toBeVisible } from './to-be-visible' ;
45import { toContainElement } from './to-contain-element' ;
6+ import { toHaveAccessibilityState } from './to-have-accessibility-state' ;
7+ import { toHaveAccessibilityValue } from './to-have-accessibility-value' ;
58import { toHaveProp } from './to-have-prop' ;
69import { toHaveStyle } from './to-have-style' ;
710import { toHaveTextContent } from './to-have-text-content' ;
8- import { toBeVisible } from './to-be-visible' ;
9- import { toHaveAccessibilityState } from './to-have-accessibility-state' ;
10- import { toHaveAccessibilityValue } from './to-have-accessibility-value' ;
1111
1212expect . extend ( {
1313 toBeDisabled,
1414 toBeEnabled,
1515 toBeEmptyElement,
1616 toBeEmpty, // Deprecated
1717 toBeOnTheScreen,
18+ toBeVisible,
1819 toContainElement,
20+ toHaveAccessibilityState,
21+ toHaveAccessibilityValue,
1922 toHaveProp,
2023 toHaveStyle,
2124 toHaveTextContent,
22- toBeVisible,
23- toHaveAccessibilityState,
24- toHaveAccessibilityValue,
2525} ) ;
Original file line number Diff line number Diff line change 1- export * from './to-be-disabled' ;
2- export * from './to-be-empty-element' ;
3- export * from './to-be-visible' ;
4- export * from './to-contain-element' ;
5- export * from './to-have-accessibility-state' ;
6- export * from './to-have-accessibility-value' ;
7- export * from './to-have-prop' ;
8- export * from './to-have-style' ;
9- export * from './to-have-text-content' ;
1+ export { toBeDisabled , toBeEnabled } from './to-be-disabled' ;
2+ export { toBeEmptyElement , toBeEmpty } from './to-be-empty-element' ;
3+ export { toBeOnTheScreen } from './to-be-on-the-screen' ;
4+ export { toBeVisible } from './to-be-visible' ;
5+ export { toContainElement } from './to-contain-element' ;
6+ export { toHaveAccessibilityState } from './to-have-accessibility-state' ;
7+ export { toHaveAccessibilityValue } from './to-have-accessibility-value' ;
8+ export { toHaveProp } from './to-have-prop' ;
9+ export { toHaveStyle } from './to-have-style' ;
10+ export { toHaveTextContent } from './to-have-text-content' ;
You can’t perform that action at this time.
0 commit comments