@@ -7,7 +7,7 @@ describe("hook types", () => {
7
7
test ( "correctly handles non-nested hooks" , ( ) => {
8
8
const hooks = createHooks < {
9
9
foo : ( ) => true ;
10
- bar : ( _argument : string ) => 42 ;
10
+ bar : ( _arg : string ) => 42 ;
11
11
} > ( ) ;
12
12
13
13
expectTypeOf ( hooks . hook ) . parameter ( 0 ) . not . toBeAny ( ) ;
@@ -20,7 +20,7 @@ describe("hook types", () => {
20
20
test ( "deprecates hooks" , ( ) => {
21
21
const hooks = createHooks < {
22
22
foo : ( ) => true ;
23
- bar : ( _argument : string ) => 42 ;
23
+ bar : ( _arg : string ) => 42 ;
24
24
} > ( ) ;
25
25
hooks . deprecateHooks ( {
26
26
foo : { to : "bar" } ,
@@ -30,43 +30,43 @@ describe("hook types", () => {
30
30
test ( "handles nested hooks" , ( ) => {
31
31
const hooks = createHooks < {
32
32
"namespace:foo" : ( argument : number ) => void ;
33
- bar : ( _argument : string ) => void ;
33
+ bar : ( _arg : string ) => void ;
34
34
"namespace:baz" : ( argument : "42" ) => void ;
35
35
} > ( ) ;
36
36
37
37
// should be valid
38
38
hooks . addHooks ( {
39
- namespace : { foo : ( _argument ) => { } , baz : ( _argument ) => { } } ,
40
- bar : ( _argument ) => { } ,
39
+ namespace : { foo : ( _arg ) => { } , baz : ( _arg ) => { } } ,
40
+ bar : ( _arg ) => { } ,
41
41
"namespace:foo" : ( ) => { } ,
42
42
} ) ;
43
43
// @ts -expect-error
44
- hooks . addHooks ( { a : ( _argument ) => { } } ) ;
44
+ hooks . addHooks ( { a : ( _arg ) => { } } ) ;
45
45
// @ts -expect-error
46
- hooks . addHooks ( { namespace : { nonexistent : ( _argument ) => { } } } ) ;
46
+ hooks . addHooks ( { namespace : { nonexistent : ( _arg ) => { } } } ) ;
47
47
} ) ;
48
48
49
49
test ( "handles nested hooks with signature" , ( ) => {
50
50
const hooks = createHooks < {
51
51
[ key : string ] : HookCallback ;
52
52
"namespace:foo" : ( argument : number ) => void ;
53
- bar : ( _argument : string ) => void ;
53
+ bar : ( _arg : string ) => void ;
54
54
} > ( ) ;
55
55
56
56
// should both be valid
57
57
hooks . addHooks ( {
58
- namespace : { foo : ( _argument ) => { } } ,
59
- bar : ( _argument ) => { } ,
58
+ namespace : { foo : ( _arg ) => { } } ,
59
+ bar : ( _arg ) => { } ,
60
60
"namespace:foo" : ( ) => { } ,
61
61
} ) ;
62
- hooks . addHooks ( { namespace : { nothing : ( _argument ) => { } } } ) ;
63
- hooks . addHooks ( { nothing : ( _argument ) => { } } ) ;
62
+ hooks . addHooks ( { namespace : { nothing : ( _arg ) => { } } } ) ;
63
+ hooks . addHooks ( { nothing : ( _arg ) => { } } ) ;
64
64
} ) ;
65
65
66
66
test ( "beforeEach and afterEach typings" , ( ) => {
67
67
const hooks = createHooks < {
68
68
foo : ( ) => true ;
69
- bar : ( _argument : number ) => 42 ;
69
+ bar : ( _arg : number ) => 42 ;
70
70
} > ( ) ;
71
71
72
72
expectTypeOf ( hooks . beforeEach ) . parameter ( 0 ) . not . toBeAny ( ) ;
0 commit comments