The given element does not have a value setterの対処法
問題のファイルでエラーが発生する原因になっている箇所
describe("フォームに入力ができること", () =>{
test("学習内容が入力できる",
async () => {
const learnRecordForm = screen.findByLabelText("学習内容");
fireEvent.change(learnRecordForm, {target: { value: "test" }});
}
)
}
修正した箇所
describe("フォームに入力ができること", () =>{
test("学習内容が入力できる",
async () => {
const learnRecordForm = await screen.findByLabelText("学習内容");
fireEvent.change(learnRecordForm, {target: { value: "test" }});
}
)
}
問題の原因
要素が見つかる前にfireEventで入力しようとしていたため
エラー解決策
要素が見つかるまで待機してからfireEventを実行する。
react-testing-libraryについて勉強しているところの為
間違っているところがありましたらご指摘・コメントをいただけると幸いです。