Skip to content

Commit

Permalink
fix(ui): remove .only from test
Browse files Browse the repository at this point in the history
  • Loading branch information
chiptus committed Apr 17, 2024
1 parent 7352aa0 commit 062e748
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/react/components/CollapseExpandButton.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ it('should call the onClick handler when the button is clicked', async () => {
expect(onClick).toHaveBeenCalledTimes(1);
});

it.only('should prevent default and stop propagation when the button is clicked', async () => {
it('should prevent default and stop propagation when the button is clicked', async () => {
const user = userEvent.setup();
const onClick = vi.fn();
const onOuterClick = vi.fn();
Expand Down

0 comments on commit 062e748

Please sign in to comment.