测试套件无法运行您的测试套件必须至少包含一个测试。

时间:2018-02-21 14:58:38

标签: webpack-dev-server webpack-2 jest

我收到此错误

测试套件无法运行

Your test suite must contain at least one test.

  at node_modules/jest-cli/build/test_scheduler.js:108:22

使用jest配置

"jest": {
    "transform": {
      ".*": "./tests/preprocessor.js"
    },
    "modulePaths": [
      "src"
    ],
  "testPathIgnorePatterns": [
    "/node_modules/",
    "/vendor"
  ],
  "testRegex": "\\.spec\\.js"
  }

任何帮助我该如何解决这个问题 我错过了什么

提前谢谢 卡洛斯维埃拉

1 个答案:

答案 0 :(得分:0)

之所以发生此问题,是因为您已经创建了测试文件,但未包含任何测试。
示例:-下面的单元测试仅包含描述部分,不涉及任何测试(截至目前已注释)

import { mount } from "enzyme";
import React from "react";
import Privileges from "./privileges";

describe("Privileges Component ", () => {
    //const wrapper = mount(<Privileges />).find(".privileges-container");
    
    // it("should render in DOM", () => {

    //     expect(wrapper.length).toEqual(1);
    // });

    
});

enter image description here