Asserts that the value is `false`.

```javascript
expect(false, 'to be false');
```

In case of a failing expectation you get the following output:

```javascript
expect(true, 'to be false');
```

```output
expected true to be false
```
