我正在尝试将单元测试从Jasmine转换为Jest。将它们转换为Jest后,某些测试开始失败。有人可以解释为什么他们对Jest失败吗?
我设法将问题隔离到下面的测试用例中。
使用茉莉花成功运行:
import { JasmineMarble } from './jasmine-marble';
import { cold } from 'jasmine-marbles';
import { switchMap } from 'rxjs/operators';
import { EMPTY, Observable } from 'rxjs';
class Service {
foo(): Observable<any> {
return EMPTY;
}
bar(a): Observable<any> {
return EMPTY;
}
}
describe('JasmineMarble', () => {
it('should create an instance', () => {
const service = new Service();
spyOn(service, 'foo').and.returnValue(cold('a|', { a: 'A' }));
spyOn(service, 'bar').and.returnValue(cold('a-b-c|', { a: 'A', b: 'B', c: 'C'}));
const result$ = service.foo().pipe(switchMap(a => service.bar(a)));
expect(result$).toBeObservable(cold('a-b-c|', { a: 'A', b: 'B', c: 'C'}));
expect(service.bar).toHaveBeenCalledWith('A');
});
});
使用Jest失败,并显示以下错误跟踪:
expect(jest.fn()).toHaveBeenCalledWith(expected)
Expected mock function to have been called with:
["A"]
But it was not called.
笑话代码:
import { JestMarble } from './jest-marble';
import { cold } from 'jest-marbles';
import { switchMap } from 'rxjs/operators';
import { EMPTY, Observable } from 'rxjs';
class Service {
foo(): Observable<any> {
return EMPTY;
}
bar(a): Observable<any> {
return EMPTY;
}
}
describe('JestMarble', () => {
it('should create an instance', () => {
const service = new Service();
jest.spyOn(service, 'foo').mockReturnValue(cold('a|', { a: 'A' }));
jest.spyOn(service, 'bar').mockReturnValue(cold('a-b-c|', { a: 'A', b: 'B', c: 'C'}));
const result$ = service.foo().pipe(switchMap(a => service.bar(a)));
expect(result$).toBeObservable(cold('a-b-c|', { a: 'A', b: 'B', c: 'C'}));
expect(service.bar).toHaveBeenCalledWith('A');
});
});
有人可以解释这种行为吗?
您可以在此处找到示例存储库:https://github.com/stijnvn/marbles
茉莉花示例可以与ng test jasmine-marbles
一起运行。与ng test jest-marbles
开玩笑。
答案 0 :(得分:0)
现在引入了toSatisfyOnFlush
来解决此问题:
describe('JestMarble', () => {
it('should create an instance', () => {
const service = new Service();
jest.spyOn(service, 'foo').mockReturnValue(cold('a|', { a: 'A' }));
jest.spyOn(service, 'bar').mockReturnValue(cold('a-b-c|', { a: 'A', b: 'B', c: 'C'}));
const result$ = service.foo().pipe(switchMap(a => service.bar(a)));
expect(result$).toBeObservable(cold('a-b-c|', { a: 'A', b: 'B', c: 'C'}));
expect(output$).toSatisfyOnFlush(() => {
expect(service.bar).toHaveBeenCalledWith('A');
});
});
});