Skip to content

Commit 35e1146

Browse files
committed
chore: fix eslint warning
1 parent 95f9be1 commit 35e1146

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/shared/widget-plugin-component-kit/src/__tests__/ThreeStateCheckBox.spec.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
import { createElement } from "react";
2-
import { render } from "@testing-library/react";
2+
import { render, RenderResult } from "@testing-library/react";
33
import { ThreeStateCheckBox, ThreeStateCheckBoxEnum } from "../ThreeStateCheckBox";
44

55
describe("ThreeStateCheckBox", () => {
6-
const renderComponent = (value: ThreeStateCheckBoxEnum) =>
6+
const renderComponent = (value: ThreeStateCheckBoxEnum): RenderResult =>
77
render(
88
<ThreeStateCheckBox value={value} className="test-class" aria-label="Test Checkbox" onChange={jest.fn()} />
99
);

0 commit comments

Comments
 (0)