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 *
If I understood your question correctly this page lists the jasmine matchers.