File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -34,8 +34,8 @@ export default {
34
34
coverageDirectory : '../../coverage/packages/enhanced' ,
35
35
rootDir : __dirname ,
36
36
testMatch : [
37
- '<rootDir>/test/*.basictest.js' ,
38
37
'<rootDir>/test/unit/**/*.test.ts' ,
38
+ '<rootDir>/test/*.basictest.js' ,
39
39
] ,
40
40
silent : true ,
41
41
verbose : false ,
Original file line number Diff line number Diff line change @@ -7,7 +7,10 @@ import { resolveMatchedConfigs } from '../../../src/lib/sharing/resolveMatchedCo
7
7
import type { ConsumeOptions } from '../../../src/declarations/plugins/sharing/ConsumeSharedModule' ;
8
8
9
9
jest . mock ( '@module-federation/sdk/normalize-webpack-path' , ( ) => ( {
10
- normalizeWebpackPath : jest . fn ( ( path ) => path ) ,
10
+ normalizeWebpackPath : jest . fn ( ( path ) => {
11
+ console . log ( 'real path: ' , path ) ;
12
+ return path ;
13
+ } ) ,
11
14
} ) ) ;
12
15
13
16
// Mock webpack classes
You can’t perform that action at this time.
0 commit comments