import { Answerable } from '@serenity-js/core'; import { Expectation } from '../Expectation'; export function endsWith(expected: Answerable): Expectation { return Expectation.thatActualShould('end with', expected) .soThat((actualValue, expectedValue) => actualValue.endsWith(expectedValue)); }