Skip to content

Commit

Permalink
run prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
emmayjiang committed Sep 18, 2024
1 parent 844eea2 commit d4997ad
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions tests/Modalizer.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -450,10 +450,12 @@ describe("Modalizer", () => {
</div>
)
)
.focusElement('#modal')
.activeElement((el) => expect(el?.textContent).toEqual("Hello"))
.pressTab()
.activeElement((el) => expect(el?.textContent).toEqual("Hello"))
.focusElement("#modal")
.activeElement((el) => expect(el?.textContent).toEqual("Hello"))
.pressTab()
.activeElement((el) =>
expect(el?.textContent).toEqual("Hello")
);
});
});
});
Expand Down Expand Up @@ -2727,4 +2729,4 @@ describe("Modalizer with virtual parents provided by getParent()", () => {
expect(ariaHiddens).toEqual([false, false, true])
);
});
});
});

0 comments on commit d4997ad

Please sign in to comment.