我正在测试我的React组件,并且想模拟几个get操作。我想做的是这样的:

test(`Created correctly`, async () => {
    fetchMock.get(`*`, JSON.stringify(FIRSTGETOBJ));
    fetchMock.get(`*`, JSON.stringify(SECONDGETOBJ));
    fetchMock.get(`*`, JSON.stringify(THIRDGETOBJ));

    //...
}

每个get的URL都相同,但是有效负载会发生变化。但是,使用上面的代码,我将得到:
Error: Adding route with same name as existing route. See `overwriteRoutes` option.

我怎样才能做到这一点?

最佳答案

使用overwriteRoutes选项

test(`Created correctly`, async () => {
    fetchMock.get(`*`, JSON.stringify(FIRSTGETOBJ));
    fetchMock.get(`*`, JSON.stringify(SECONDGETOBJ), { overwriteRoutes: false });
    fetchMock.get(`*`, JSON.stringify(THIRDGETOBJ), { overwriteRoutes: false });

    //...
}

10-08 02:31