4 lines
85 B
JavaScript

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