File tree 3 files changed +3
-3
lines changed
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ module.exports = class MongoEnvironment extends TestEnvironment {
21
21
globalConfigPath : string ;
22
22
constructor ( config : JestEnvironmentConfig , context : EnvironmentContext ) {
23
23
super ( config , context ) ;
24
- this . globalConfigPath = pathJoin ( config . projectConfig . rootDir , 'globalConfig.json' ) ;
24
+ this . globalConfigPath = pathJoin ( config . globalConfig . rootDir , 'globalConfig.json' ) ;
25
25
}
26
26
27
27
async setup ( ) {
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ const mongo: Mongo = isReplSet
21
21
? new MongoMemoryReplSet ( mongoMemoryServerOptions )
22
22
: new MongoMemoryServer ( mongoMemoryServerOptions ) ;
23
23
24
- module . exports = async ( config : JestEnvironmentConfig [ 'projectConfig ' ] ) => {
24
+ module . exports = async ( config : JestEnvironmentConfig [ 'globalConfig ' ] ) => {
25
25
const globalConfigPath = join ( config . rootDir , 'globalConfig.json' ) ;
26
26
27
27
const options = getMongodbMemoryOptions ( ) ;
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ import type {JestEnvironmentConfig} from '@jest/environment';
4
4
5
5
const debug = require ( 'debug' ) ( 'jest-mongodb:teardown' ) ;
6
6
7
- module . exports = async function ( config : JestEnvironmentConfig [ 'projectConfig ' ] ) {
7
+ module . exports = async function ( config : JestEnvironmentConfig [ 'globalConfig ' ] ) {
8
8
const globalConfigPath = join ( config . rootDir , 'globalConfig.json' ) ;
9
9
10
10
debug ( 'Teardown mongod' ) ;
You can’t perform that action at this time.
0 commit comments