2017-09-04 20:26:46 +00:00
|
|
|
module.exports = {
|
|
|
|
roots: ["./app/static/app/js"],
|
2017-09-29 18:24:45 +00:00
|
|
|
moduleNameMapper: {
|
2017-09-05 17:12:35 +00:00
|
|
|
"^.*\\.s?css$": "<rootDir>/app/static/app/js/tests/mocks/empty.scss.js",
|
2018-02-17 19:46:48 +00:00
|
|
|
"jquery": "<rootDir>/app/static/app/js/vendor/jquery-1.11.2.min.js",
|
2019-12-04 03:59:44 +00:00
|
|
|
"SystemJS": "<rootDir>/app/static/app/js/tests/mocks/system.js",
|
|
|
|
"ReactDOM": "react-dom"
|
2017-09-29 18:24:45 +00:00
|
|
|
},
|
2018-01-24 22:04:53 +00:00
|
|
|
setupFiles: ["<rootDir>/app/static/app/js/tests/setup/shims.js",
|
|
|
|
"<rootDir>/app/static/app/js/tests/setup/setupTests.js",
|
2018-07-27 19:16:14 +00:00
|
|
|
"<rootDir>/app/static/app/js/tests/setup/browserMock.js"],
|
|
|
|
testURL: "http://localhost:8000/"
|
2017-09-04 20:26:46 +00:00
|
|
|
};
|