Search code examples
jasmineprotractorangular-e2e

What are all of jasmine expected conditions we can use for a test case?


There are several expected conditions such as toBe, toEqual,... that we can using in a test case.

expect('an expression').toBe('a value');
expect('an expression').toEqual('a value');
expect('an expression').*('a value');

I need to know domain of keywords that i can using instead of *


Solution

  • If I understood your question correctly this page lists the jasmine matchers.