UNPKG

assertior

Version:

Assertion library with soft assertions

7 lines (6 loc) 628 B
declare function toBeNotEmptyArray(expected: any, message?: string, _isSoft?: boolean): void; declare function toBeEmptyArray(expected: any, message?: string, _isSoft?: boolean): void; declare function arrayIncludesMembers(expected: any, actual: any, message?: string, _isSoft?: boolean): void; declare function arrayNotIncludesMembers(expected: any, actual: any, message?: string, _isSoft?: boolean): void; declare function arrayHasLengthAbove(array: any, length: any, message?: string, _isSoft?: boolean): void; export { toBeEmptyArray, toBeNotEmptyArray, arrayIncludesMembers, arrayNotIncludesMembers, arrayHasLengthAbove };