We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f39743f commit c947a38Copy full SHA for c947a38
src/molecules/lists/radio-list.test.tsx
@@ -1,8 +1,8 @@
1
import React from "react";
2
import { render } from "@testing-library/react";
3
import {
4
- RadioList,
5
COMPONENT_CLASS,
+ RadioList,
6
RadioListStyles,
7
RadioListButtonStyleClassName,
8
} from "./radio-list";
@@ -22,7 +22,7 @@ describe("RadioList", () => {
22
expect(getByText(expected)).not.toBeNull();
23
});
24
25
- test("when items prop is empty, radio-list returns", () => {
+ test("when items prop is empty, radio-list returns null", () => {
26
// Arrange & Act
27
const { container } = render(<RadioList items={[]} />);
28
const result = container.querySelector("." + COMPONENT_CLASS);
0 commit comments