# no-skip-test πŸ“ Disallow the `.skip` test modifier. πŸ’ΌπŸš« This rule is enabled in the βœ… `recommended` [config](https://github.com/sindresorhus/eslint-node-test#preset-configs). This rule is _disabled_ in the β˜‘οΈ `unopinionated` [config](https://github.com/sindresorhus/eslint-node-test#preset-configs). πŸ’‘ This rule is manually fixable by [editor suggestions](https://eslint.org/docs/latest/use/core-concepts#rule-suggestions). Skipped tests do not run and can silently rot. They are useful while developing but should generally not be committed. ## Examples ```js import test from 'node:test'; // ❌ test.skip('foo', () => {}); // ❌ test('foo', {skip: true}, () => {}); // βœ… test('foo', () => {}); ```