@mongodb-js/mocha-config-compass
v1.7.1
Published
Shared mocha mocha configuration for Compass packages
Maintainers
Keywords
Readme
@mongodb-js/mocha-config-compass
Shared mocha configuration for Compass packages.
Usage
For general-purpose packages install as dependency and add the following configuration file
// file:<package>/.mocharc.js
module.exports = require('@mongodb-js/mocha-config-compass');This configuration activates the colors and sets default timeout to 15 seconds (helpful for CI runs). It also registers ts-node so that you can run tests written in typescript without compiling them first
For packages that are intended for the browser use the following configuration file
// file:<package>/.mocharc.js
module.exports = require('@mongodb-js/mocha-config-compass/react');This configuration extends on the general-purpose one, but also adds jsdom to the environment and registers chai-dom helpers (if you don't have chai-dom types installed already you should add them with npm i -D @types/chai-dom)
