跳至内容

jest/no-commented-out-tests 可疑

有什么作用

此规则会对已注释掉的测试发出警告。它与 no-disabled-tests 规则类似。

这有什么问题?

可能会忘记取消对一些测试的注释。此规则会对已注释掉的测试发出警告。它与 no-disabled-tests 规则类似。

示例

javascript
// describe('foo', () => {});
// it('foo', () => {});
// test('foo', () => {});

// describe.skip('foo', () => {});
// it.skip('foo', () => {});
// test.skip('foo', () => {});

此规则与 eslint-plugin-vitest 兼容,要使用此规则,请将以下配置添加到 .eslintrc.json

json
{
  "rules": {
    "vitest/no-commented-out-tests": "error"
  }
}

参考

在 MIT 许可下发布。