-
Notifications
You must be signed in to change notification settings - Fork 274
/
Copy pathconfig.ts
61 lines (48 loc) · 1.43 KB
/
config.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
import type { DebugOptions } from './helpers/debug';
/**
* Global configuration options for React Native Testing Library.
*/
export type Config = {
/** Default timeout, in ms, for `waitFor` and `findBy*` queries. */
asyncUtilTimeout: number;
/** Default value for `includeHiddenElements` query option. */
defaultIncludeHiddenElements: boolean;
/** Default options for `debug` helper. */
defaultDebugOptions?: Partial<DebugOptions>;
/**
* Set to `false` to disable concurrent rendering.
* Otherwise `render` will default to concurrent rendering.
*/
concurrentRoot: boolean;
};
export type ConfigAliasOptions = {
/** RTL-compatibility alias to `defaultIncludeHiddenElements` */
defaultHidden: boolean;
};
const defaultConfig: Config = {
asyncUtilTimeout: 1000,
defaultIncludeHiddenElements: false,
concurrentRoot: true,
};
let config = { ...defaultConfig };
/**
* Configure global options for React Native Testing Library.
*/
export function configure(options: Partial<Config & ConfigAliasOptions>) {
const { defaultHidden, ...restOptions } = options;
const defaultIncludeHiddenElements =
restOptions.defaultIncludeHiddenElements ??
defaultHidden ??
config.defaultIncludeHiddenElements;
config = {
...config,
...restOptions,
defaultIncludeHiddenElements,
};
}
export function resetToDefaults() {
config = { ...defaultConfig };
}
export function getConfig() {
return config;
}