代码拉取完成,页面将自动刷新
// 配置
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;
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。