使用 Ant Design 编写 React 测试时出现错误:TypeError: Cannot destruct property 'Title' “_antd.Typography”的因为它是未定义的

发布于 2025-01-12 08:13:59 字数 527 浏览 0 评论 0 原文

我正在使用 Ant Design 编写 React 测试,但遇到错误。我认为它访问版式但不理解标题。我尝试了一些变体,例如 Const {Title}=Typography,但它不起作用。我该如何解决?

Component.js

import { Typography, Select } from "antd";

const {Title,Text} = Typography;

const {Option} = Select; >

Component.test.js

jest.mock("antd", () => ({}));

在此处输入图像描述

I'm writing a React test using Ant Design and I'm getting an error. I think it accesses Typography but doesn't understand Title. I tried a few variants like Const {Title}=Typography but it doesn't work. How can I solve it?

Component.js

import { Typography, Select } from "antd";

const {Title,Text} = Typography;

const {Option} = Select;

Component.test.js

jest.mock("antd", () => ({}));

enter image description here

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文