1 Star 2 Fork 0

SyncGithub/MINE-H5-UI

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
jest.config.js 777 Bytes
一键复制 编辑 原始数据 按行查看 历史
吕彪 提交于 2021-10-09 17:49 . 发布v2.0
// 配置
const config = {
moduleFileExtensions: ["vue", "json", "js", "ts"],
preset: "ts-jest",
testEnvironment: "jsdom",
transform: {
"^.+\\.vue$": "vue-jest", // vue 文件用 vue-jest 转换
"^.+\\.ts$": "ts-jest" // ts 文件用 ts-jest 转换
},
testMatch: ["**/tests/unit/*.spec.ts"], // 匹配 tests/unit 目录下的 .ts 文件
moduleNameMapper: {
"^~/(.*)$": "<rootDir>/packages/$1", // 配置 jest 下 ~ -> packages,
"^@/(.*)$": "<rootDir>/examples/$1" // 配置 jest 下 @ -> examples
},
verbose: true, // 显示冗余代码,true:显示测试用例,false:显示 console.log
bail: true, // 经历几次失败后停止运行测试
displayName: {
name: "MINE-H5-UI",
color: "green"
}
};
module.exports = config;
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
TypeScript
1
https://gitee.com/sync-github/MINE-H5-UI.git
git@gitee.com:sync-github/MINE-H5-UI.git
sync-github
MINE-H5-UI
MINE-H5-UI
master

搜索帮助