Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
766 views
in Technique[技术] by (71.8m points)

reactjs - test tailwindcss styles with react testing library

I want to test that div receives correct styles from tailwindcss and have 2 questions related to that:

  1. How do we setup tailwindcss in a test file, so that styles related to classNames are applied?
  2. How do I access tailwindcss's theme property in a test

Here is a code that I am working with:

Dropdown.tsx

type Props = {
    items: string[];
};
export const Dropdown = ({ items }: Props) => {
    const defaultItem = items.length > 0 ? items[0] : "";
    return (
        <div role="dropdown">
            <div role="dropdown-toggle" className="p-1">{defaultItem}</div>
        </div>
    );
};

Dropdown.test.tsx

test("should render dark grey rounded border when collapsed", () => {
    const items = ["item1", "item2"];
    render(<Dropdown items={items} />);
    expect(screen.getByRole("dropdown-toggle")).toHaveStyle(`
        border-radius: 4px;
        border-color: ???; <---- how can access tailwind css theme?
    `);
});

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神答复

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...