期望 toNotBe() 未定义不是函数

Expect toNotBe() is undefined is not a function

此代码:

expect(X).toNotBe(Y);

Returns我:

TypeError: undefined is not a function

Jasmine 版本为 2.0.3

你知道我应该去哪里看吗?

应该是:

expect(X).not.toBe(Y);

你应该使用

expect(X).not.toBe(Y);

读这个Jasmine introduction