Skip to content

Commit

Permalink
fix: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
arein committed Jan 3, 2024
1 parent 9bc1ced commit 92d3e03
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apps/laboratory/tests/email.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,6 @@ testMEmail.beforeEach(async ({ modalPage, context, modalValidator }) => {
testMEmail('it should sign', async ({ modalPage, modalValidator }) => {
testMEmail.skip(modalPage.library === 'wagmi', 'Tests are flaky on wagmi')
await modalPage.sign()
await modalPage.appoveSign()
await modalPage.approveSign()
await modalValidator.expectAcceptedSign()
})
2 changes: 1 addition & 1 deletion apps/laboratory/tests/shared/pages/ModalPage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ export class ModalPage {
await this.page.getByTestId('sign-message-button').click()
}

async appoveSign() {
async approveSign() {
await expect(
this.page.frameLocator('#w3m-iframe').getByText('requests a signature')
).toBeVisible()
Expand Down

0 comments on commit 92d3e03

Please sign in to comment.