# ava/no-skip-assert 📝 Disallow skipping assertions. 💼 This rule is enabled in the ✅ `recommended` [config](https://github.com/avajs/eslint-plugin-ava#recommended-config). 💡 This rule is manually fixable by [editor suggestions](https://eslint.org/docs/latest/use/core-concepts#rule-suggestions). Translations: [Français](https://github.com/avajs/ava-docs/blob/main/fr_FR/related/eslint-plugin-ava/docs/rules/no-skip-assert.md) It's easy to make an assertion skipped with `t.xyz.skip()` and then forget about it. ## Examples ```js import test from 'ava'; test('some title', t => { t.is.skip(1, 1); // ❌ t.is(1, 1); // ✅ }); ```