Skip to content

Commit

Permalink
Comment out test with no assertion
Browse files Browse the repository at this point in the history
  • Loading branch information
grahamalama committed Jan 25, 2024
1 parent e252456 commit fc5c79c
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,9 @@ describe("SimpleReviewHeader component", () => {
expect(await screen.findByTestId("spinner")).toBeDefined();
});

it("should open CommentDialog when request review is clicked and call requestReview from modal", async () => {
const {} = renderButtons({ status: "work-in-progress" });
it.skip("should open CommentDialog when request review is clicked and call requestReview from modal", async () => {
// TODO: What should this test do?
// const { } = renderButtons({ status: "work-in-progress" });
});

it("should display rollback button when status is wip and call rollbackChanges from modal", async () => {
Expand Down

0 comments on commit fc5c79c

Please sign in to comment.