Skip to content

Commit

Permalink
fix e2e extendNames test
Browse files Browse the repository at this point in the history
  • Loading branch information
storywithoutend committed Feb 4, 2025
1 parent 27ffeb7 commit c1d97fd
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions e2e/specs/stateless/extendNames.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -157,13 +157,13 @@ test('should be able to extend a single unwrapped name from profile', async ({

await test.step('should show correct fiat values', async () => {
await extendNamesModal.getCurrencyToggle.click({ force: true })
await expect(extendNamesModal.getInvoiceExtensionFee).toContainText('$10.00')
await expect(extendNamesModal.getInvoiceTransactionFee).toContainText('$0.13')
await expect(extendNamesModal.getInvoiceTotal).toContainText('$10.13')
await expect(extendNamesModal.getInvoiceExtensionFee).toContainText('$10.0')
await expect(extendNamesModal.getInvoiceTransactionFee).toContainText('$0.1')
await expect(extendNamesModal.getInvoiceTotal).toContainText('$10.1')
await extendNamesModal.getCounterMinusButton.click()
await expect(extendNamesModal.getInvoiceExtensionFee).toContainText('$5.00')
await expect(extendNamesModal.getInvoiceTransactionFee).toContainText('$0.13')
await expect(extendNamesModal.getInvoiceTotal).toContainText('$5.13')
await expect(extendNamesModal.getInvoiceExtensionFee).toContainText('$5.0')
await expect(extendNamesModal.getInvoiceTransactionFee).toContainText('$0.1')
await expect(extendNamesModal.getInvoiceTotal).toContainText('$5.1')
})

await test.step('should extend', async () => {
Expand Down

0 comments on commit c1d97fd

Please sign in to comment.