This repository was archived by the owner on Aug 31, 2018. It is now read-only.
File tree 1 file changed +5
-4
lines changed
1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change 22
22
'use strict' ;
23
23
const common = require ( '../common' ) ;
24
24
const assert = require ( 'assert' ) ;
25
+ const fixtures = require ( '../common/fixtures' ) ;
25
26
26
27
// A module with an error in it should throw
27
28
assert . throws ( function ( ) {
28
- require ( ` ${ common . fixturesDir } /throws_error` ) ;
29
+ require ( fixtures . path ( ' /throws_error' ) ) ;
29
30
} , / ^ E r r o r : b l a h $ / ) ;
30
31
31
32
// Requiring the same module again should throw as well
32
33
assert . throws ( function ( ) {
33
- require ( ` ${ common . fixturesDir } /throws_error` ) ;
34
+ require ( fixtures . path ( ' /throws_error' ) ) ;
34
35
} , / ^ E r r o r : b l a h $ / ) ;
35
36
36
37
// Requiring a module that does not exist should throw an
@@ -43,13 +44,13 @@ assertModuleNotFound('/module-require/not-found/trailingSlash');
43
44
44
45
function assertModuleNotFound ( path ) {
45
46
assert . throws ( function ( ) {
46
- require ( common . fixturesDir + path ) ;
47
+ require ( fixtures . path ( path ) ) ;
47
48
} , function ( e ) {
48
49
assert . strictEqual ( e . code , 'MODULE_NOT_FOUND' ) ;
49
50
return true ;
50
51
} ) ;
51
52
}
52
53
53
54
function assertExists ( fixture ) {
54
- assert ( common . fileExists ( common . fixturesDir + fixture ) ) ;
55
+ assert ( common . fileExists ( fixtures . path ( fixture ) ) ) ;
55
56
}
You can’t perform that action at this time.
0 commit comments