mirror of
https://github.com/doctrine/doctrine-website.git
synced 2026-03-23 22:32:11 +01:00
14 lines
305 B
JavaScript
14 lines
305 B
JavaScript
module.exports = {
|
|
verbose: true,
|
|
rootDir: './',
|
|
testEnvironmentOptions: {
|
|
url: 'http://localhost/'
|
|
},
|
|
testMatch: ['**/jest/**/*.test.js'],
|
|
"transform": {
|
|
"^.+\\.js$": "babel-jest",
|
|
},
|
|
"setupFiles": ["./jest/setup/jest.js"],
|
|
testEnvironment: 'jsdom'
|
|
};
|