From fc7d7ecff70557320564e4d34ddad38f051bad51 Mon Sep 17 00:00:00 2001 From: porink0424 Date: Wed, 8 May 2024 17:22:20 +0900 Subject: [PATCH] Apply formatter --- tslib/react/test/PlotHistory.test.tsx | 4 +--- tslib/react/test/TrialTable.test.tsx | 4 +--- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/tslib/react/test/PlotHistory.test.tsx b/tslib/react/test/PlotHistory.test.tsx index 8ad43ad3..3d121fae 100644 --- a/tslib/react/test/PlotHistory.test.tsx +++ b/tslib/react/test/PlotHistory.test.tsx @@ -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() }) } }) diff --git a/tslib/react/test/TrialTable.test.tsx b/tslib/react/test/TrialTable.test.tsx index 5a547ba1..fb2d8f7b 100644 --- a/tslib/react/test/TrialTable.test.tsx +++ b/tslib/react/test/TrialTable.test.tsx @@ -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() }) } })