Skip to content

Latest commit

 

History

History
27 lines (16 loc) · 925 Bytes

File metadata and controls

27 lines (16 loc) · 925 Bytes

ava/no-inline-assertions

📝 Disallow inline assertions.

💼 This rule is enabled in the ✅ recommended config.

🔧 This rule is automatically fixable by the --fix CLI option.

Translations: Français

The test implementation should not purely consist of an inline assertion as assertions do not return a value and having them inline also makes the tests less readable.

This rule is fixable. It will wrap the assertion in braces {}. It will not do any whitespace or style changes.

Examples

import test from 'ava';

test('foo', t => t.true(fn())); // ❌

test('foo', t => { // ✅
	t.true(fn());
});