ava/no-skip-assert
April 6, 2026 ยท View on GitHub
๐ Disallow skipping assertions.
๐ผ This rule is enabled in the โ
recommended config.
๐ก This rule is manually fixable by editor suggestions.
Translations: Franรงais
It's easy to make an assertion skipped with t.xyz.skip() and then forget about it.
Examples
import test from 'ava';
test('some title', t => {
t.is.skip(1, 1); // โ
t.is(1, 1); // โ
});