Update tslib/react in response to renaming

This commit is contained in:
porink0424
2024-05-08 17:21:28 +09:00
parent edf7107242
commit e017e3787d
5 changed files with 14 additions and 14 deletions
@@ -28,10 +28,10 @@ describe("PlotIntermediateValues Tests", async () => {
}
for (const study of window.mockStudies) {
test(`PlotIntermediateValues (study name: ${study.study_name})`, () => {
setup({ study, dataTestId: `plot-intermediatevalues-${study.study_id}` })
test(`PlotIntermediateValues (study name: ${study.name})`, () => {
setup({ study, dataTestId: `plot-intermediatevalues-${study.id}` })
expect(
screen.getByTestId(`plot-intermediatevalues-${study.study_id}`)
screen.getByTestId(`plot-intermediatevalues-${study.id}`)
).toBeInTheDocument()
})
}