@putout/plugin-tape
Version:
🐊Putout plugin helps with tests
14 lines (12 loc) • 715 B
JavaScript
export const report = () => 'Avoid passing default messages to operators';
export const replace = () => ({
't.ok(__a, "should be truthy")': 't.ok(__a)',
't.notOk(__a, "should be falsy")': 't.notOk(__a)',
't.match(__a, __b, "should match")': 't.match(__a, __b)',
't.notMatch(__a, __b, "should not match")': 't.notMatch(__a, __b)',
't.equal(__a, __b, "should equal")': 't.equal(__a, __b)',
't.notEqual(__a, __b, "should not equal")': 't.notEqual(__a, __b)',
't.deepEqual(__a, __b, "should deep equal")': 't.deepEqual(__a, __b)',
't.deepEqual(__a, __b, "should equal")': 't.deepEqual(__a, __b)',
't.notDeepEqual(__a, __b, "should not deep equal")': 't.notDeepEqual(__a, __b)',
});