问题标签 [gulp-jest]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
gulp - 无法读取 gulp-jest 中未定义的属性“runCLI”
我正在尝试使用 gulp-jest 运行 jest 测试。从 npm 安装这些包:
并为 jest 提供了以下配置:
我在我的 gulpfile.js 中编写了一个基本方法,引用了这个链接:
但是,当我运行 gulp 任务时出现以下错误:
TypeError:无法读取未定义的属性“runCLI”
jestjs - 运行 gulp-jest 任务后的错误消息
我目前正在将单元测试添加到我继承的自定义构建的 FE 框架中。我正在使用 gulp-jest 包添加 Jest,所有测试都运行并按预期提供必要的详细信息。
当将 gulp jest 任务与 gulp watch 一起使用时,问题就出现了,我似乎在任务本身和相关插件上遇到了错误。以下是我当前的设置
并在一个单独的文件中
这是手表收到任何更改后的错误
我的 package.json 依赖项列表
任何想法为什么会发生这种情况?