assertthat
Version:
assertthat provides fluent TDD.
22 lines (18 loc) • 540 B
text/typescript
import { AssertionFailed } from '../../errors';
import { dispel } from '../../dispel/dispel';
import { prettyPrint } from '../../prettyPrint/typeAware/prettyPrint';
import { error, Result, value } from 'defekt';
const assertMapIsEmpty = function <TKey, TValue>(
actual: Map<TKey, TValue>
): Result<undefined, AssertionFailed> {
if (actual.size === 0) {
return value();
}
return error(new AssertionFailed({
message: 'The map is not empty.',
actual: prettyPrint(dispel(actual))
}));
};
export {
assertMapIsEmpty
};