/* eslint-disable @typescript-eslint/no-unused-vars */ import React from "react"; import { testExamples } from "@test/utils"; // ReactFinalForm 使用了一些 React 正在废弃的声明周期方法,这里屏蔽下 console.warn beforeEach(() => jest.spyOn(console, "warn").mockImplementationOnce(() => {})); // 测试组件代码 Example 快照 testExamples(__dirname); test("TODO", () => { // add test here });