Asserts that the value is `true`.

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

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

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

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