@@ -22,7 +22,7 @@ describe("TypeScriptLoader", () => {
22
22
} ,
23
23
} ) ;
24
24
const loadedCfg = cfg . load (
25
- path . resolve ( fixturesPath , "valid.fixture.ts" )
25
+ path . resolve ( fixturesPath , "valid.fixture.ts" ) ,
26
26
) ;
27
27
28
28
expect ( typeof loadedCfg ! . config ) . toStrictEqual ( "object" ) ;
@@ -54,7 +54,7 @@ describe("TypeScriptLoader", () => {
54
54
} ,
55
55
} ) ;
56
56
const loadedCfg = await cfg . load (
57
- path . resolve ( fixturesPath , "valid.fixture.ts" )
57
+ path . resolve ( fixturesPath , "valid.fixture.ts" ) ,
58
58
) ;
59
59
60
60
expect ( typeof loadedCfg ! . config ) . toStrictEqual ( "object" ) ;
@@ -87,7 +87,7 @@ describe("TypeScriptLoader", () => {
87
87
} ,
88
88
} ) ;
89
89
const loadedCfg = cfg . load (
90
- path . resolve ( fixturesPath , "valid.fixture.ts" )
90
+ path . resolve ( fixturesPath , "valid.fixture.ts" ) ,
91
91
) ;
92
92
93
93
expect ( typeof loadedCfg ! . config ) . toStrictEqual ( "object" ) ;
@@ -103,7 +103,7 @@ describe("TypeScriptLoader", () => {
103
103
} ) ;
104
104
105
105
expect ( ( ) =>
106
- cfg . load ( path . resolve ( fixturesPath , "invalid.fixture.ts" ) )
106
+ cfg . load ( path . resolve ( fixturesPath , "invalid.fixture.ts" ) ) ,
107
107
) . toThrowError ( ) ;
108
108
} ) ;
109
109
} ) ;
0 commit comments