@@ -12,7 +12,7 @@ describe('resolve', function () {
12
12
} )
13
13
14
14
it ( 'resolves via a custom resolver with interface version 1' , function ( ) {
15
- const testContext = utils . testContext ( { 'import/resolver' : './foo-bar-resolver-v1' } )
15
+ const testContext = utils . testContext ( { 'import/resolver' : './foo-bar-resolver-v1' } )
16
16
17
17
expect ( resolve ( '../files/foo'
18
18
, Object . assign ( { } , testContext , { getFilename : function ( ) { return utils . getFilename ( 'foo.js' ) } } )
@@ -28,7 +28,7 @@ describe('resolve', function () {
28
28
} )
29
29
30
30
it ( 'resolves via a custom resolver with interface version 1 assumed if not specified' , function ( ) {
31
- const testContext = utils . testContext ( { 'import/resolver' : './foo-bar-resolver-no-version' } )
31
+ const testContext = utils . testContext ( { 'import/resolver' : './foo-bar-resolver-no-version' } )
32
32
33
33
expect ( resolve ( '../files/foo'
34
34
, Object . assign ( { } , testContext , { getFilename : function ( ) { return utils . getFilename ( 'foo.js' ) } } )
@@ -44,7 +44,7 @@ describe('resolve', function () {
44
44
} )
45
45
46
46
it ( 'resolves via a custom resolver with interface version 2' , function ( ) {
47
- const testContext = utils . testContext ( { 'import/resolver' : './foo-bar-resolver-v2' } )
47
+ const testContext = utils . testContext ( { 'import/resolver' : './foo-bar-resolver-v2' } )
48
48
const testContextReports = [ ]
49
49
testContext . report = function ( reportInfo ) {
50
50
testContextReports . push ( reportInfo )
0 commit comments