Skip to content

Commit

Permalink
refactor(e2e): rename subscription_test
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristiaanScheermeijer authored and AntonLantukh committed Apr 22, 2024
1 parent 3d1cc73 commit 8df8c30
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ runTestSuite(cleengProps, 'Cleeng');
function runTestSuite(props: ProviderProps, providerName: string) {
let paidLoginContext: LoginContext;

Feature(`subscription - ${providerName}`).retry(Number(process.env.TEST_RETRY_COUNT) || 0);
Feature(`choose offer - ${providerName}`).retry(Number(process.env.TEST_RETRY_COUNT) || 0);

Before(async ({ I }) => {
// This gets used in checkoutService.getOffer to make sure the offers are geolocated for NL
Expand All @@ -43,7 +43,7 @@ function runTestSuite(props: ProviderProps, providerName: string) {
I.useConfig(props.config);
});

Scenario(`I can see my payments data - ${providerName}`, async ({ I }) => {
Scenario(`I can see a payments page with no history - ${providerName}`, async ({ I }) => {
paidLoginContext = await I.registerOrLogin(paidLoginContext);

await I.openMainMenu();
Expand Down

0 comments on commit 8df8c30

Please sign in to comment.