@@ -2,6 +2,7 @@ import { render, screen, waitFor } from "@testing-library/react";
2
2
import { CreatePost } from "../components/CreatePost" ;
3
3
import { ChakraProvider } from "@chakra-ui/react" ;
4
4
import userEvent from "@testing-library/user-event" ;
5
+ import { act } from "react" ;
5
6
6
7
const initialMockData = [
7
8
{
@@ -71,52 +72,71 @@ jest.mock("../lib/supabasefunctions", () => {
71
72
} ) ;
72
73
73
74
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
+ } ) ;
80
83
} ) ;
84
+
81
85
test ( "タイトルが見れる" , ( ) => {
82
86
expect ( screen . getByTestId ( "kakomon-post-title" ) ) . toBeInTheDocument ( ) ;
83
87
} ) ;
84
88
85
89
test ( "フォームのバリデーションが機能する" , async ( ) => {
86
90
const postButton = screen . getByTestId ( "kakomon-post-modal" ) ;
87
- postButton . click ( ) ;
91
+
92
+ await act ( async ( ) => {
93
+ postButton . click ( ) ;
94
+ } ) ;
95
+
88
96
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 ( ) ;
99
105
} ) ;
100
106
101
107
test ( "過去問の募集投稿をするとレコードが1つ増える" , async ( ) => {
102
- // 1回目のmockResolvedValueOnce
103
108
await waitFor ( ( ) => {
104
109
const recordList = screen . getByTestId ( "record-list" ) ;
105
110
expect ( recordList ) . toBeInTheDocument ( ) ;
106
111
const rows = recordList . querySelectorAll ( "tr" ) ;
107
112
expect ( rows . length - 1 ) . toBe ( 1 ) ;
108
113
} ) ;
109
- // 過去問の募集投稿をする
114
+
110
115
const postButton = screen . getByTestId ( "kakomon-post-modal" ) ;
111
- postButton . click ( ) ;
116
+
117
+ await act ( async ( ) => {
118
+ postButton . click ( ) ;
119
+ } ) ;
120
+
112
121
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
+
114
126
const nameInput = screen . getByTestId ( "name-input" ) ;
115
- await userEvent . type ( nameInput , "テスト太郎" ) ;
127
+ await act ( async ( ) => {
128
+ await userEvent . type ( nameInput , "テスト太郎" ) ;
129
+ } ) ;
130
+
116
131
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
+
120
140
await waitFor ( ( ) => {
121
141
const recordList = screen . getByTestId ( "record-list" ) ;
122
142
expect ( recordList ) . toBeInTheDocument ( ) ;
@@ -135,4 +155,4 @@ describe("過去問の募集投稿ページのテスト", () => {
135
155
// const detailButtons = await screen.findAllByTestId("detail-modal-button");
136
156
// expect(detailButtons.length).toBeGreaterThan(0); // ボタンが存在することを確認
137
157
// });
138
- } ) ;
158
+ } ) ;
0 commit comments