-
-
Notifications
You must be signed in to change notification settings - Fork 750
Expand file tree
/
Copy pathglobal-variables.types.ts
More file actions
95 lines (79 loc) · 1.94 KB
/
global-variables.types.ts
File metadata and controls
95 lines (79 loc) · 1.94 KB
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
import { expectError, expectType } from 'tsd';
expectError(Feature());
expectError(Scenario());
expectError(Before());
expectError(BeforeSuite());
expectError(After());
expectError(AfterSuite());
// @ts-ignore
expectType<CodeceptJS.FeatureConfig>(Feature('feature'))
// @ts-ignore
expectType<CodeceptJS.ScenarioConfig>(Scenario('scenario'))
// @ts-ignore
expectType<CodeceptJS.ScenarioConfig>(Scenario(
'scenario',
{}, // $ExpectType {}
() => {} // $ExpectType () => void
))
// @ts-ignore
expectType<CodeceptJS.ScenarioConfig>(Scenario(
'scenario',
() => {} // $ExpectType () => void
))
// @ts-ignore
const callback: CodeceptJS.HookCallback = () => {}
// @ts-ignore
expectType<CodeceptJS.ScenarioConfig>(Scenario(
'scenario',
callback // $ExpectType HookCallback
))
// @ts-ignore
expectType<CodeceptJS.ScenarioConfig>(Scenario('scenario',
(args) => {
// @ts-ignore
expectType<CodeceptJS.SupportObject>(args)
// @ts-ignore
expectType<CodeceptJS.I>(args.I) // $ExpectType I
}
))
// @ts-ignore
expectType<CodeceptJS.ScenarioConfig>(Scenario(
'scenario',
async () => {} // $ExpectType () => Promise<void>
))
// @ts-ignore
expectType<void>(Before((args) => {
// @ts-ignore
expectType<CodeceptJS.SupportObject>(args)
// @ts-ignore
expectType<CodeceptJS.I>(args.I)
}))
// @ts-ignore
expectType<void>(BeforeSuite((args) => {
// @ts-ignore
expectType<CodeceptJS.SupportObject>(args)
// @ts-ignore
expectType<CodeceptJS.I>(args.I)
}))
// @ts-ignore
expectType<void>(After((args) => {
// @ts-ignore
expectType<CodeceptJS.SupportObject>(args)
// @ts-ignore
expectType<CodeceptJS.I>(args.I)
}))
// @ts-ignore
expectType<void>(AfterSuite((args) => {
// @ts-ignore
expectType<CodeceptJS.SupportObject>(args)
// @ts-ignore
expectType<CodeceptJS.I>(args.I)
}))
// @ts-ignore
expectType<Promise<boolean>>(tryTo(() => {
return true;
}));
// @ts-ignore
expectType<Promise<boolean>>(tryTo(async () => {
return false;
}));