1 | import React from "react";
|
2 |
|
3 | import { render, screen } from "@/test/render";
|
4 |
|
5 | import { StylingInline } from "./StylingInline";
|
6 |
|
7 | const today = new Date(2021, 10, 25);
|
8 |
|
9 | beforeAll(() => jest.setSystemTime(today));
|
10 | afterAll(() => jest.useRealTimers());
|
11 |
|
12 | beforeEach(() => {
|
13 | render(<StylingInline />);
|
14 | });
|
15 |
|
16 | test("the caption should apply the custom style", () => {
|
17 | expect(screen.getByRole("status").parentElement).toHaveStyle({
|
18 | color: "red"
|
19 | });
|
20 | });
|