gpt4 book ai didi

webpack-dev-server - 测试套件运行失败 您的测试套件必须至少包含一个测试。

转载 作者:行者123 更新时间:2023-12-03 17:35:15 26 4
gpt4 key购买 nike

我收到这个错误

测试套件无法运行

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"
}

任何帮助我如何解决这个问题
我错过了一些东西

提前致谢
卡洛斯维埃拉

最佳答案

发生此问题是因为您已创建测试文件,但未包含任何测试。
示例:- 下面的单元测试仅包含描述部分,不包括任何测试(截至目前已评论)

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

关于webpack-dev-server - 测试套件运行失败 您的测试套件必须至少包含一个测试。,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48909027/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com