jest-mongodb icon indicating copy to clipboard operation
jest-mongodb copied to clipboard

Using same dbname for all test with no instance config

Open Sammaye opened this issue 1 year ago • 0 comments

module.exports = {
    mongodbMemoryServerOptions: {
        binary: {
            version: '5.0.0',
            skipMD5: true,
        },
        autoStart: false,
        instance: {},
    },

    //useSharedDBForAllJestWorkers: false,
};

I run instance config like this and notice that all dbnames are actually "test".

Sammaye avatar Oct 30 '24 15:10 Sammaye