Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
noahlitvin committed Jan 4, 2025
1 parent f2f07da commit c60029b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ import { When, Then } from '@badeball/cypress-cucumber-preprocessor';

When('User types and select the safe {string}', (text: string) => {
const [chainId, address] = text.split(':');

// Type chain ID in the first input
cy.get('[data-testid="safe-chain-input"]').type(chainId);

// Type address in the second input
cy.get('[data-testid="safe-address-input"]').type(address);
cy.get('[data-testid="safe-address-input"]').type('{enter}');
Expand Down

0 comments on commit c60029b

Please sign in to comment.