Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
florine2623 committed Dec 10, 2024
1 parent 95018c2 commit 2ff0962
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions tests/UI/campaigns/audit/BO/09_shipping.ts
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,18 @@ describe('BO - Shipping', async () => {
expect(jsErrors.length).to.equals(0);
});

it('should edit first line', async function () {
await testContext.addContextItem(this, 'testIdentifier', 'goToEditCarrierFreeShipping', baseContext);

await boCarriersPage.goToEditCarrierPage(page, 1);

const pageTitle = await boCarriersCreatePage.getPageTitle(page);
expect(pageTitle).to.contains(boCarriersCreatePage.pageTitleEdit);

const jsErrors = utilsPlaywright.getJsErrors();
expect(jsErrors.length).to.equals(0);
});

it('should go to \'Shipping > Preferences\' page', async function () {
await testContext.addContextItem(this, 'testIdentifier', 'goToShippingPreferencesPage', baseContext);

Expand Down

0 comments on commit 2ff0962

Please sign in to comment.