Apply formatter

This commit is contained in:
porink0424
2024-05-08 17:22:20 +09:00
parent 674495c1f8
commit fc7d7ecff7
2 changed files with 2 additions and 6 deletions
+1 -3
View File
@@ -26,9 +26,7 @@ describe("PlotHistory Tests", async () => {
for (const study of window.mockStudies) {
test(`PlotHistory (study name: ${study.name})`, () => {
setup({ study, dataTestId: `plot-history-${study.id}` })
expect(
screen.getByTestId(`plot-history-${study.id}`)
).toBeInTheDocument()
expect(screen.getByTestId(`plot-history-${study.id}`)).toBeInTheDocument()
})
}
})
+1 -3
View File
@@ -26,9 +26,7 @@ describe("TrialTable Tests", async () => {
for (const study of window.mockStudies) {
test(`TrialTable (study name: ${study.name})`, () => {
setup({ study, dataTestId: `trial-table-${study.id}` })
expect(
screen.getByTestId(`trial-table-${study.id}`)
).toBeInTheDocument()
expect(screen.getByTestId(`trial-table-${study.id}`)).toBeInTheDocument()
})
}
})