6

我有这个常数:

export const clientData = fetch(`${process.env.SERVER_HOST}clientData.json`)
    .then(response => response.json());

哪个工作正常,现在我正在使用 Jasmine 和 fetch-mock 对此进行测试

这是我的测试:

import { clientData } from '../../../src/js/services/client-data.fetch';
import fetchMock from 'fetch-mock';

describe('test', () => {
    const exampleResponse = {
        clientData: 'test'
    };

    beforeAll(() => {
        fetchMock.mock('*', exampleResponse);
    });

    it('ooo', () => {
        console.log('here', clientData);
        var a = clientData;
        a.then(b=> console.log(b))
    });
});

console.logclientData返回 a Promise(这很好),但then永远不会触发。

不明白为什么,我的代码有什么问题?

4

1 回答 1

1

发生这种情况是因为测试执行本质上是同步的,并且它不会等待断言发生,因此您必须传递一个done回调并从then回调中的测试调用它

像这样:

import { clientData } from '../../../src/js/services/client-data.fetch';
import fetchMock from 'fetch-mock';

describe('test', () => {
    const exampleResponse = {
        clientData: 'test'
    };

    beforeAll(() => {
        fetchMock.mock('*', exampleResponse);
    });

    it('ooo', (done) => {
        console.log('here', clientData);
        var a = clientData;
        a.then(b=> {
            console.log(b);
            done();
        })
    });
});
于 2020-12-29T11:01:28.320 回答