This code:
expect (X) .toNotBe (Y);
Brings me back:
TypeError: undefined is not a function
Jasmine Version 2.0.3
Do you know where I should look?
It should be:
expect(X).not.toBe(Y);
You have to use
Read this jasmine introduction