1 Star 0 Fork 0

amspring/canvas-lms

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
jest.config.js 2.10 KB
一键复制 编辑 原始数据 按行查看 历史
/*
* Copyright (C) 2018 - present Instructure, Inc.
*
* This file is part of Canvas.
*
* Canvas is free software: you can redistribute it and/or modify it under
* the terms of the GNU Affero General Public License as published by the Free
* Software Foundation, version 3 of the License.
*
* Canvas is distributed in the hope that it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
* A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
* details.
*
* You should have received a copy of the GNU Affero General Public License along
* with this program. If not, see <http://www.gnu.org/licenses/>.
*/
const {defaults} = require('jest-config')
module.exports = {
moduleNameMapper: {
'^i18n!(.*$)': '<rootDir>/jest/i18nTransformer.js',
'^compiled/(.*)$': '<rootDir>/app/coffeescripts/$1',
'^coffeescripts/(.*)$': '<rootDir>/app/coffeescripts/$1',
'^jsx/(.*)$': '<rootDir>/app/jsx/$1',
'^jst/(.*)$': '<rootDir>/app/views/jst/$1',
"^timezone$": "<rootDir>/public/javascripts/timezone_core.js",
"\\.svg$": "<rootDir>/jest/imageMock.js"
},
roots: ['app/jsx', 'app/coffeescripts'],
moduleDirectories: [
'node_modules',
'public/javascripts',
'public/javascripts/vendor'
],
reporters: [ "default", "jest-junit" ],
snapshotSerializers: [
'enzyme-to-json/serializer'
],
setupFiles: [
'jest-localstorage-mock',
'jest-canvas-mock',
'<rootDir>/jest/jest-setup.js'
],
setupFilesAfterEnv: [
'react-testing-library/cleanup-after-each',
'jest-dom/extend-expect',
'./app/jsx/__tests__/ValidatedApolloCleanup'
],
testMatch: [
'**/__tests__/**/?(*.)(spec|test).js'
],
coverageDirectory: '<rootDir>/coverage-jest/',
moduleFileExtensions: [...defaults.moduleFileExtensions, 'coffee', 'handlebars'],
transform: {
'^i18n': '<rootDir>/jest/i18nTransformer.js',
'^.+\\.coffee': '<rootDir>/jest/coffeeTransformer.js',
'^.+\\.handlebars': '<rootDir>/jest/handlebarsTransformer.js',
'^.+\\.jsx?$': 'babel-jest',
'\\.graphql$': 'jest-raw-loader'
},
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Ruby
1
https://gitee.com/amspring/canvas-lms.git
git@gitee.com:amspring/canvas-lms.git
amspring
canvas-lms
canvas-lms
stable

搜索帮助