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