- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
尝试使用 spy 的属性并以此错误结束。
var spy = expect.createSpy();
spy();
expect(spy).toHaveBeenCalled();
错误:
TypeError: expect.createSpy is not a function
最佳答案
chai
不提供 spy ,为此你需要一个类似 Sinon 的库.
有一个名为 sinon-chai
的 Chai 插件这创建了两者的有用组合:
const chai = require('chai');
const sinon = require('sinon');
const sinonChai = require('sinon-chai');
const expect = chai.expect;
chai.use(sinonChai);
// Create the spy, using Sinon.
let spy = sinon.spy();
// Call the spy, so we can test it.
spy();
// Assert that the spy has been called.
expect(spy).to.have.been.called;
关于node.js - TypeError : expect. createSpy 不是函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46752389/
之间有什么区别 jasmine.createSpy('someMethod') 和 spyOn(someObject, 'someMethod') 为什么要选择使用spyOn? 我的猜测是,第一个替代
我正在使用 Typescript 为我的 Angular 项目编写单元测试 当我尝试为某些服务创建模拟时,我使用这种方式: const serviceMock = { method: _.no
我正在尝试模拟一个响应对象,它看起来像这样: var res = { status: jasmine.createSpy().andReturn(this), send: jasmine.cr
我正在我的应用程序中从 jasmine 迁移到 jest。我有以下行要测试 JSON.parse(window.document.querySelector(SELECTOR).innerHTML)
我正在我的应用程序中从 jasmine 迁移到 jest。我有以下行要测试 JSON.parse(window.document.querySelector(SELECTOR).innerHTML)
我做了一个工厂的简单演示,我正在尝试使用 来测试它。 Jasmine .我能够运行测试,但我使用的是 spy 方法。我宁愿使用 Jasmine .createSpy 或 jasmine.createS
我正在尝试使用 createSpy() 使用 jasmine 设置模拟单元测试。我得到了 TypeError: undefined is not a function (evaluating jasm
在 Jasmine 单元测试中使用 andCallFake 函数时,出现此错误: TypeError: jasmine.createSpy(...).andCallFake is not a func
尝试使用 spy 的属性并以此错误结束。 var spy = expect.createSpy(); spy(); expect(spy).toHaveBeenCalled(); 错误: TypeEr
我正在寻找 sinonjs 中的 jasmine.createSpy().and.callFake(fn) 的等价物。 例如: const mySpy = jasmine.createSpy('my
我是一名优秀的程序员,十分优秀!