-
Notifications
You must be signed in to change notification settings - Fork 273
/
Copy pathextend-expect.ts
39 lines (37 loc) · 1.25 KB
/
extend-expect.ts
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
28
29
30
31
32
33
34
35
36
37
38
39
import { toBeBusy } from './to-be-busy';
import { toBeChecked } from './to-be-checked';
import { toBeDisabled, toBeEnabled } from './to-be-disabled';
import { toBeEmptyElement } from './to-be-empty-element';
import { toBeCollapsed, toBeExpanded } from './to-be-expanded';
import { toBeOnTheScreen } from './to-be-on-the-screen';
import { toBePartiallyChecked } from './to-be-partially-checked';
import { toBeSelected } from './to-be-selected';
import { toBeVisible } from './to-be-visible';
import { toContainElement } from './to-contain-element';
import { toHaveAccessibilityValue } from './to-have-accessibility-value';
import { toHaveAccessibleName } from './to-have-accessible-name';
import { toHaveDisplayValue } from './to-have-display-value';
import { toHaveProp } from './to-have-prop';
import { toHaveStyle } from './to-have-style';
import { toHaveTextContent } from './to-have-text-content';
export type * from './types';
expect.extend({
toBeOnTheScreen,
toBeChecked,
toBeCollapsed,
toBeDisabled,
toBeBusy,
toBeEmptyElement,
toBeEnabled,
toBeExpanded,
toBePartiallyChecked,
toBeSelected,
toBeVisible,
toContainElement,
toHaveAccessibilityValue,
toHaveAccessibleName,
toHaveDisplayValue,
toHaveProp,
toHaveStyle,
toHaveTextContent,
});