我有 4 个单元测试。
const handleHttp = (method: 'POST' | 'GET' | 'PUT' | 'DELETE'): void => {
const req = httpTestingController.expectOne(`${environment.apiUrl}test`);
expect(req.request.method).toEqual(method);
return req.flush({ fake: 1 });
};
it('should make a POST request', fakeAsync(() => {
service.post('test', { fakeProp: 'fakeValue' }).then((res) => {
expect(res).toEqual({ fake: 1 });
});
handleHttp('POST');
}));
it('should make a GET request', fakeAsync(() => {
service.get('test').then((res) => {
expect(res).toEqual({ fake: 1 });
});
handleHttp('GET');
}));
it('should make a PUT request', fakeAsync(() => {
service.put('test', { fakeProp: 'fakeValue' }).then((res) => {
expect(res).toEqual({ fake: 1 });
});
handleHttp('PUT');
}));
it('should make a DELETE request', fakeAsync(() => {
service.delete('test', { fakeProp: 'fakeValue' }).then((res) => {
expect(res).toEqual({ fake: 1 });
});
handleHttp('DELETE');
}));
方法选项参数都相同:
post<T>(url: string, body: object, options: object = this.httpOptions): Promise<T> {
get<T>(url: string, options: object = this.httpOptions): Promise<T> {
put<T>(url: string, body: object, options: object = this.httpOptions): Promise<T> {
delete<T>(url: string, options: object = this.httpOptions): Promise<T> {
结果:
75% 分店 3/4
截屏:
只有最后一个参数options
没有被覆盖,但前 3 个被覆盖。
图书馆:
"jasmine-core": "~3.4.0",
"jasmine-spec-reporter": "~4.2.1",
"karma": "~4.1.0",
"karma-chrome-launcher": "~2.2.0",
"karma-coverage-istanbul-reporter": "~2.0.1",
"karma-jasmine": "~2.0.1",
"karma-jasmine-html-reporter": "^1.4.0",
所以问题是:为什么分支覆盖看起来是随机的,或者我的代码中遗漏了一些东西?我应该运行测试还是不重要?