Skip to content

Commit

Permalink
✅(frontend) remove only call
Browse files Browse the repository at this point in the history
A test suite was skipping test because the use of `only` so we remove it.
  • Loading branch information
jbpenrath committed Apr 17, 2024
1 parent c0aac06 commit ba8c5dd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ describe('<DahsboardEditCreditCard/>', () => {
);
});

it.only('deletes a credit card', async () => {
it('deletes a credit card', async () => {
const creditCard = CreditCardFactory().one();
let creditCards = [...CreditCardFactory().many(5), creditCard];

Expand Down

0 comments on commit ba8c5dd

Please sign in to comment.