-
Notifications
You must be signed in to change notification settings - Fork 88
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into bugfix/1912-Support-Page-Forms-Validation
- Loading branch information
Showing
124 changed files
with
8,367 additions
and
2,729 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
export const stripeSuccessFormData = { | ||
cardNumber: '4242 4242 4242 4242', | ||
name: 'E2e_TEST_NAME', | ||
email: '[email protected]', | ||
expiryDate: '04 / 42', | ||
cvc: '424', | ||
country: 'BG', | ||
} | ||
|
||
export const stripeErrorNoBalanceFormData = { | ||
cardNumber: '4000 0000 0000 9995', | ||
name: 'E2e_TEST_NAME', | ||
email: '[email protected]', | ||
expiryDate: '04 / 42', | ||
cvc: '424', | ||
country: 'BG', | ||
} | ||
|
||
export const stripeAuthenticationRequiredFormData = { | ||
cardNumber: '4000 0027 6000 3184', | ||
name: 'E2e_TEST_NAME', | ||
email: '[email protected]', | ||
expiryDate: '04 / 42', | ||
cvc: '424', | ||
country: 'BG', | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,5 @@ | ||
// This enum should be used as a parameter for methods in E2E tests | ||
|
||
// Check bgLocalizationOneTimeDonation["third-step"]["card-region"] | ||
export enum bgDonationRegions { | ||
EUROPE = 'Европа', | ||
GREAT_BRITAIN = 'Великобритания', | ||
OTHER = 'други', | ||
} | ||
|
||
export enum enDonationRegions { | ||
EUROPE = 'Europe', | ||
GREAT_BRITAIN = 'Great Britain', | ||
OTHER = 'other', | ||
export enum DonationRegions { | ||
EUROPE = 'EU', | ||
GREAT_BRITAIN = 'UK', | ||
OTHER = 'Other', | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.