assertthat
Version:
assertthat provides fluent TDD.
5 lines (4 loc) • 296 B
TypeScript
import { Result } from 'defekt';
import { AssertionFailed } from '../../errors';
declare const assertActualIsContainingAnyOf: <TContent>(actual: string | Set<TContent> | TContent[], expected: (string | TContent)[]) => Result<undefined, AssertionFailed>;
export { assertActualIsContainingAnyOf };