mirror of https://gitlab.com/ecentrics/drizzle
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
564 B
14 lines
564 B
4 years ago
|
// For a detailed explanation regarding each configuration property, visit:
|
||
|
// https://jestjs.io/docs/en/configuration.html
|
||
|
|
||
|
module.exports = {
|
||
|
// Automatically clear mock calls and instances between every test
|
||
|
clearMocks: true,
|
||
|
|
||
|
// An array of regexp pattern strings, matched against all module paths before considered 'visible' to the module loader
|
||
|
modulePathIgnorePatterns: ['<rootDir>[/\\\\](dist|node_modules)[/\\\\]'],
|
||
|
|
||
|
// The test environment that will be used for testing
|
||
|
testEnvironment: '<rootDir>/test/environments/ganache-environment.js'
|
||
|
}
|