When a test fails due to an expectation mismatch, the actual and expected values are displayed without colour differentiation, making them hard to distinguish at a glance.
Current behaviour
Failure output shows:
```
actual expected
'aaba'
Expected 'aa' to equal specified value: 'ba'
```
All text appears in the same colour.
Suggested behaviour
Apply colour coding to differentiate:
- Actual value (e.g., red)
- Expected value (e.g., green)
This should apply to:
- The inline failure message in the editor
- The tooltip next to the test name
Feedback from Kevin Paxton