1 Star 1 Fork 1

Mars/gitlab

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
jest_resolver.js 508 Bytes
一键复制 编辑 原始数据 按行查看 历史
Albert Salim 提交于 2021-10-04 15:20 . Remove dependency on jest-resolver
const fs = require('fs');
// Wrap jest default resolver to detect missing frontend fixtures.
module.exports = (request, options) => {
try {
return options.defaultResolver(request, options);
} catch (e) {
if (request.match(/tmp\/tests\/frontend\/fixtures/) && !fs.existsSync(request)) {
console.error(
'\x1b[1m\x1b[41m\x1b[30m %s \x1b[0m %s',
'!',
`Fixture file ${request} does not exist. Did you run bin/rake frontend:fixtures?`,
);
}
throw e;
}
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Ruby
1
https://gitee.com/mars167/gitlab.git
git@gitee.com:mars167/gitlab.git
mars167
gitlab
gitlab
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385