In chai we can do: ```typescript expect(totalNumberOfUsers, 'Number of users must be above 2').to.be.above(2); ``` I would like to be able to do the same with earl, something like: ```typescript expect(totalNumberOfUsers, 'Number of users must be above 2').toBeGreaterThan(2); ```