我是新手,并试图在我的以下代码中找出一些基本的东西
import * as actions from './IncrementalSearchActions';
describe('Incremental Search Actions', () => {
it('Should create an incremental search action')
});
我遇到的问题/困惑是
答案 0 :(得分:43)
答案 1 :(得分:-1)
您的测试文件是否位于“测试”文件夹下?确保正确安装jest并在package.json上列出并在脚本下列出:
"test": "jest --coverage",
您可以使用npm test
运行脚本