Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是开玩笑的新手,并试图在我的以下代码中找出一些基本的东西
import * as actions from './IncrementalSearchActions'; describe('Incremental Search Actions', () => { it('Should create an incremental search action') });
我对此的问题/困惑是
我相信这里的答案就是您问题的答案。
TL;DR;:
将以下内容添加到您的.eslintrc文件中:
.eslintrc
"env": { "jest": true }
你的测试文件在“ test ”文件夹下吗?确保 jest 已正确安装并列在您的 package.json 和脚本下:
"test": "jest --coverage",
您可以使用 npm test 运行脚本