我正在将一些单元测试从Jasmine 1.3迁移到2.x,我希望有一些简单命令的快速参考备忘单。由于我没有找到一个,我认为发布我到目前为止所做的事情会有所帮助。其他人可以做出贡献。
答案 0 :(得分:7)
Jasmine 1.3 - > Jasmine 2.x
argsForCall[0] -> calls.argsFor(0)
calls[0].args[1] -> calls.argsFor(0)[1]
mostRecentCall -> calls.mostRecent()
reset() -> calls.reset()
callCount -> calls.count()
andReturn -> and.returnValue
andCallFake -> and.callFake
andCallThrough() -> and.callThrough()