跳到内容

jest/valid-title 正确性

🛠️对于有些违规项,此规则提供了自动修复。

规则功能

通过确保标题

  • 非空,
  • 为字符串,
  • 无块名称前缀,
  • 无前导或尾随空格

来检查 Jest 代码块的标题是否有效。

示例
describe("", () => {});
describe("foo", () => {
  it("", () => {});
});
it("", () => {});
test("", () => {});
xdescribe("", () => {});
xit("", () => {});
xtest("", () => {});

javascript

下一页开始