我正在使用“jasmine”:“^ 2.5.2”并且在节点中,我收到错误:
TypeError: jasmine.addMatchers is not a function
当使用jasmine-node specfrom终端运行一个简单的例子如下所示.
什么可能导致这个问题以及如何解决它?
function helloWorld() { return "Hello World!"; } describe('keyframes-tool',function () { it("says hello",function() { expect(helloWorld()).toEqual("Hello World!"); }); });