Asserts that the value is undefined.

expect(undefined, 'to be undefined');

We will get the following error if we make an incorrect assumption:

expect('Hello world', 'to be undefined');