我想寫測試的承諾結果,我dot'n想解決承諾在每個it/pit
部分。jest - 在測試前解決承諾
我需要水木清華這樣的:
describe('getData() results test',() => {
return getData().then(response => {
it('foo',() => expect(response.foo).toEqual(1));
it('bar',() => expect(response.bar).toEqual(2));
it('bar',() => expect(response.bar).toEqual(3));
});
});
如果使用beforeEach
- 承諾將得到解決多次的it
節的數目。我需要解決它一次,然後測試響應。有很多測試用例,所以我想分割所有測試到it
部分
在你的例子中promise會被解析3次。我需要解決一次,然後測試響應。有很多測試用例,所以我想把所有的測試都分成「它」部分 – tuchk4
「應該返回正在測試的承諾。」有承諾的「坑」部分。但現在似乎'它'可以使用 – tuchk4