import { Answerable } from '@serenity-js/core'; import { Expectation } from '../Expectation'; export function isGreaterThan(expected: Answerable): Expectation { return Expectation.thatActualShould('have value greater than', expected) .soThat((actualValue, expectedValue) => actualValue > expectedValue); }