Skip to content
Permalink
canary
Switch branches/tags
Go to file
 
 
Cannot retrieve contributors at this time
10 lines (10 sloc) 339 Bytes
module.exports = {
testMatch: ['**/*.test.js'],
verbose: true,
rootDir: 'test',
modulePaths: ['<rootDir>/lib'],
globalSetup: '<rootDir>/jest-global-setup.js',
globalTeardown: '<rootDir>/jest-global-teardown.js',
setupFilesAfterEnv: ['<rootDir>/jest-setup-after-env.js'],
testEnvironment: '<rootDir>/jest-environment.js',
}