redux-saga-test-plan中testSaga和expectSaga的区别

Difference between testSaga and expectSaga in redux-saga-test-plan

expectSaga 用于集成测试而 testSaga 用于一般断言是否正确?

实际上,我实际上可以在所有测试中互换使用它们,所以我对何时使用哪个感到有点困惑。

我认为单元测试 [1] 下 README 的副标题行是对何时使用 testSagaexpectSaga:

的最简明解释

If you want to ensure that your saga yields specific types of effects in a particular order, then you can use the testSaga function.

如果您不关心这个级别的细节,尤其是排序位,那么 expectSaga 就不那么严格,因此对您的 sagas 中的未来更改不那么脆弱。但在某些情况下,您需要非常具体地确定哪些效果的顺序,在这种情况下您应该使用 testSaga.

[1] https://github.com/jfairbank/redux-saga-test-plan#unit-testing