Skip to content

Commit

Permalink
fix test name
Browse files Browse the repository at this point in the history
  • Loading branch information
olaszakos committed Jan 15, 2025
1 parent 5e5d411 commit 17d2bcd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/wallet/src/components/requests/RequestDetailView.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,7 @@ describe('RequestDetailView', () => {
expect(wrapper.emitted().cancel).toBeTruthy();
});

it("shows doesn't show cancel button for cancelled requests", async () => {
it("doesn't show cancel button for cancelled requests", async () => {
const wrapper = mount(RequestDetailView, {
props: cancelledProps,
});
Expand All @@ -390,7 +390,7 @@ describe('RequestDetailView', () => {
expect(wrapper.find('[data-test-id="request-details-cancel"]').exists()).toBeFalsy();
});

it("shows doesn't show cancel button for non-requester", async () => {
it("doesn't show cancel button for non-requester", async () => {
const wrapper = mount(RequestDetailView, {
props: pendingProps,
});
Expand Down

0 comments on commit 17d2bcd

Please sign in to comment.