我有这个常数:
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))
});
});
clientData
的控制台.log返回一个Promise
(这很好(,但从未触发then
。
不知道为什么,我的代码出了什么问题?
发生这种情况是因为测试执行本质上是同步的,并且它不会等待断言发生,因此您必须传递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();
})
});
});