Skip to content

Commit

Permalink
e2e: enable increment tests
Browse files Browse the repository at this point in the history
  • Loading branch information
nelitow committed Nov 12, 2024
1 parent 31a27f8 commit 5395f78
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,11 @@ import type { FuelWalletTestHelper } from '@fuels/playwright-utils';
import { test } from '@fuels/playwright-utils';
import dotenv from 'dotenv';
import { type WalletUnlocked, bn } from 'fuels';
import { sessionTests, transferTests } from '../../../common/common';
import {
incrementTests,
sessionTests,
transferTests,
} from '../../../common/common';
import type { ConnectorFunctions } from '../../../common/types';
import { testSetup, transferMaxBalance } from '../setup';
dotenv.config();
Expand Down Expand Up @@ -67,5 +71,7 @@ test.describe('FuelWalletConnector', () => {
await sessionTests(page, { connect, approveTransfer });

await transferTests(page, { connect, approveTransfer });

await incrementTests(page, { connect, approveTransfer });
});
});

0 comments on commit 5395f78

Please sign in to comment.