在Sinon中使用Typescript/Angular检查http calledWith的方法如下:
import { SinonSpy, SinonStub, SinonFakeXMLHttpRequest } from 'sinon';
import { HttpClient } from '@angular/common/http';
const httpClientSpy: SinonSpy = sinon.createSpyObj('HttpClient', ['get']);
或者
const httpClientStub: SinonStub = sinon.stub(HttpClient.prototype, 'get');
expect(httpClientSpy.get.calledWith('your-url')).toBeTruthy();
或者
expect(httpClientStub.calledWith('your-url')).toBeTruthy();
这样,你就可以在Sinon中使用Typescript/Angular来检查http calledWith了。
对于Sinon的更多用法和详细信息,你可以参考腾讯云的产品文档: 腾讯云Sinon产品介绍
领取专属 10元无门槛券
手把手带您无忧上云