diff --git a/typescript_tests/TrialTable.test.tsx b/typescript_tests/TrialTable.test.tsx index 6a38f9e8..0dd85bc3 100644 --- a/typescript_tests/TrialTable.test.tsx +++ b/typescript_tests/TrialTable.test.tsx @@ -91,7 +91,7 @@ const studyDetail: StudyDetail = { it("Sort TrialTable by trial number", () => { const { getAllByRole, getByText } = render( - + ) const rows = getAllByRole("row") @@ -107,7 +107,7 @@ it("Sort TrialTable by trial number", () => { it("Sort TrialTable by value", () => { const { getAllByRole, getByText } = render( - + ) fireEvent.click(getByText("Value")) const rows = getAllByRole("row") @@ -122,7 +122,7 @@ it("Sort TrialTable by value", () => { it("Sort TrialTable by duration", () => { const { getAllByRole, getByText } = render( - + ) fireEvent.click(getByText("Duration(ms)")) const rows = getAllByRole("row") @@ -137,7 +137,7 @@ it("Sort TrialTable by duration", () => { it("Sort TrialTable by state", () => { const { getAllByRole, getByText } = render( - + ) fireEvent.click(getByText("State")) const rows = getAllByRole("row") @@ -151,7 +151,7 @@ it("Sort TrialTable by state", () => { }) it("Filter trials by state", () => { - const { queryAllByText } = render() + const { queryAllByText } = render() expect(queryAllByText("Fail").length).toBe(1) // Click 'Complete' state