assertthat
Version:
assertthat provides fluent TDD.
15 lines (12 loc) • 431 B
text/typescript
import { AssertionFailed } from '../../../errors';
import { assertStringIsNotStartingWithString } from '../../forStrings/assertStringIsNotStartingWithString';
import { Result } from 'defekt';
const assertActualIsNotStartingWith = function (
actual: string,
expected: string
): Result<undefined, AssertionFailed> {
return assertStringIsNotStartingWithString(actual, expected);
};
export {
assertActualIsNotStartingWith
};