I'm trying to use something I've seen around that looks like:
let test1 = {value:5};
let test2 = {value:5};
// Returns true.
expect(test1).toEqual(test2);
However, it's just giving me an error:
EXCEPTION: Error in :0:0 caused by: expect is not defined
I understand these functions come from Jasmine, and I read somewhere that as of Angular RC5 that they don't need to be imported, as they are global. Is that true? If not, how should I import them?