2023-09-22 10:43:58 -07:00

4 lines
94 B
TypeScript

export function expectation(passed: boolean) {
return passed ? 'not to have' : 'to have';
}