1.0.5 • Published 5 years ago
jest-environment-mongodb-wiredtiger v1.0.5
jest-environment-mongodb-wiredtiger
This package provides a wrapper around
jest-environment-mongodb
with the storageEngine setting preconfigured to wiredTiger.
This makes it possible to set the storage engine on a per test file basis via docblocks, without setting up Jest projects.
Installation
NPM
npm install --save-dev mongodb-memory-server jest-environment-mongodb-wiredtigerYarn
yarn add --dev mongodb-memory-server jest-environment-mongodb-wiredtigerUsage
By adding a @jest-environment
docblock at
the top of a test file, you can specify mongodb-wiredtiger to be used for all
tests in that file:
/**
* @jest-environment mongodb-wiredtiger
*/This overrides any environment set by testEnvironment in the Jest
configuration file.
Additionally, any instance.storageEngine option provided by
testEnvironmentOptions will be overridden with wiredTiger. All other options
provided by testEnvironmentOptions will be in effect.