Skip to content

Commit 317434d

Browse files
committed
必要な箇所をactで
1 parent a5c999f commit 317434d

File tree

2 files changed

+57
-28
lines changed

2 files changed

+57
-28
lines changed

src/__tests__/Contributors.spec.tsx

+11-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import { render,screen} from "@testing-library/react";
22
import { ChakraProvider } from "@chakra-ui/react";
33
import { Contributors } from "../components/Contributors";
4+
import { act } from "react";
45

56

67
jest.mock("firebase/app", () => ({
@@ -27,9 +28,17 @@ describe("過去問の募集投稿ページのテスト", () => {
2728

2829
test("バリデーションエラーが表示される", async () => {
2930
const postButton = screen.getByTestId("kakomon-register-modal");
30-
postButton.click();
31+
32+
await act(async () => {
33+
postButton.click();
34+
});
35+
3136
const submitButton = await screen.findByTestId("kakomon-register-button");
32-
submitButton.click();
37+
38+
await act(async () => {
39+
submitButton.click();
40+
});
41+
3342
expect(
3443
await screen.findByText("⚠️お名前は必須入力項目です。")
3544
).toBeInTheDocument();

src/__tests__/CreatePost.spec.tsx

+46-26
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import { render, screen, waitFor } from "@testing-library/react";
22
import { CreatePost } from "../components/CreatePost";
33
import { ChakraProvider } from "@chakra-ui/react";
44
import userEvent from "@testing-library/user-event";
5+
import { act } from "react";
56

67
const initialMockData = [
78
{
@@ -71,52 +72,71 @@ jest.mock("../lib/supabasefunctions", () => {
7172
});
7273

7374
describe("過去問の募集投稿ページのテスト", () => {
74-
beforeEach(() => {
75-
render(
76-
<ChakraProvider>
77-
<CreatePost />
78-
</ChakraProvider>
79-
);
75+
beforeEach(async () => {
76+
await act(async () => {
77+
render(
78+
<ChakraProvider>
79+
<CreatePost />
80+
</ChakraProvider>
81+
);
82+
});
8083
});
84+
8185
test("タイトルが見れる", () => {
8286
expect(screen.getByTestId("kakomon-post-title")).toBeInTheDocument();
8387
});
8488

8589
test("フォームのバリデーションが機能する", async () => {
8690
const postButton = screen.getByTestId("kakomon-post-modal");
87-
postButton.click();
91+
92+
await act(async () => {
93+
postButton.click();
94+
});
95+
8896
const submitButton = await screen.findByTestId("kakomon-post-button");
89-
submitButton.click();
90-
expect(
91-
await screen.findByText("⚠️タイトルは必須入力項目です。")
92-
).toBeInTheDocument();
93-
expect(
94-
await screen.findByText("⚠️お名前は必須入力項目です。")
95-
).toBeInTheDocument();
96-
expect(
97-
await screen.findByText("⚠️過去問詳細は必須入力項目です。")
98-
).toBeInTheDocument();
97+
98+
await act(async () => {
99+
submitButton.click();
100+
});
101+
102+
expect(await screen.findByText("⚠️タイトルは必須入力項目です。")).toBeInTheDocument();
103+
expect(await screen.findByText("⚠️お名前は必須入力項目です。")).toBeInTheDocument();
104+
expect(await screen.findByText("⚠️過去問詳細は必須入力項目です。")).toBeInTheDocument();
99105
});
100106

101107
test("過去問の募集投稿をするとレコードが1つ増える", async () => {
102-
// 1回目のmockResolvedValueOnce
103108
await waitFor(() => {
104109
const recordList = screen.getByTestId("record-list");
105110
expect(recordList).toBeInTheDocument();
106111
const rows = recordList.querySelectorAll("tr");
107112
expect(rows.length - 1).toBe(1);
108113
});
109-
// 過去問の募集投稿をする
114+
110115
const postButton = screen.getByTestId("kakomon-post-modal");
111-
postButton.click();
116+
117+
await act(async () => {
118+
postButton.click();
119+
});
120+
112121
const titleInput = await screen.findByTestId("title-input");
113-
await userEvent.type(titleInput, "test");
122+
await act(async () => {
123+
await userEvent.type(titleInput, "test");
124+
});
125+
114126
const nameInput = screen.getByTestId("name-input");
115-
await userEvent.type(nameInput, "テスト太郎");
127+
await act(async () => {
128+
await userEvent.type(nameInput, "テスト太郎");
129+
});
130+
116131
const descriptionInput = screen.getByTestId("description-input");
117-
await userEvent.type(descriptionInput, "これはテストです。");
118-
userEvent.click(screen.getByTestId("kakomon-post-button"));
119-
// 2回目のmockResolvedValueOnce
132+
await act(async () => {
133+
await userEvent.type(descriptionInput, "これはテストです。");
134+
});
135+
136+
await act(async () => {
137+
userEvent.click(screen.getByTestId("kakomon-post-button"));
138+
});
139+
120140
await waitFor(() => {
121141
const recordList = screen.getByTestId("record-list");
122142
expect(recordList).toBeInTheDocument();
@@ -135,4 +155,4 @@ describe("過去問の募集投稿ページのテスト", () => {
135155
// const detailButtons = await screen.findAllByTestId("detail-modal-button");
136156
// expect(detailButtons.length).toBeGreaterThan(0); // ボタンが存在することを確認
137157
// });
138-
});
158+
});

0 commit comments

Comments
 (0)