Asserts that the value is defined.

expect('Hello world!', 'to be defined');
expect({ foo: { bar: 'baz' } }, 'to be defined');

Alias for not to be undefined.