AI写作智能体 自主规划任务,支持联网查询和网页读取,多模态高效创作各类分析报告、商业计划、营销方案、教学内容等。 广告
# React测试 安装 react-testing-library、react-dom、react-scripts 安装 jest、jest-dom 测试用例 ``` import React from "react"; import { render, cleanup, fireEvent } from "react-testing-library"; import { App } from "./index"; afterEach(cleanup); describe("基础React单元测试", function () { it("index组件测试", function () { const { getByTestId } = render(<App />); const [ul, nav] = [getByTestId("js-ul"), getByTestId("js-h2")]; expect(ul.children.length).toBe(2); expect(nav.textContent).toContain("京程一灯"); }) }); ```