The preceding test code should have caused some ESLint errors. This is because we violated three rules:
- func-names: Unexpected unnamed function
- prefer-arrow-callback: Unexpected function expression
- no-undef: describe is not defined
Let's fix them before we continue.