File tree Expand file tree Collapse file tree 2 files changed +4
-22
lines changed
cypress-tests/cypress/e2e/configs/Payment Expand file tree Collapse file tree 2 files changed +4
-22
lines changed Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ const PaymentMethodCardDetails = {
33
33
card_holder_name : "Joseph Doe" ,
34
34
} ;
35
35
36
- const singleUseMandateData = {
36
+ export const singleUseMandateData = {
37
37
customer_acceptance : customerAcceptance ,
38
38
mandate_type : {
39
39
single_use : {
@@ -43,7 +43,7 @@ const singleUseMandateData = {
43
43
} ,
44
44
} ;
45
45
46
- const multiUseMandateData = {
46
+ export const multiUseMandateData = {
47
47
customer_acceptance : customerAcceptance ,
48
48
mandate_type : {
49
49
multi_use : {
Original file line number Diff line number Diff line change 1
1
import {
2
2
customerAcceptance ,
3
3
connectorDetails as commonConnectorDetails ,
4
+ singleUseMandateData ,
5
+ multiUseMandateData ,
4
6
} from "./Commons" ;
5
7
import { getCustomExchange } from "./Modifiers" ;
6
8
7
9
const DUPLICATION_TIMEOUT = 30000 ; // 30 seconds
8
10
9
- const singleUseMandateData = {
10
- customer_acceptance : customerAcceptance ,
11
- mandate_type : {
12
- single_use : {
13
- amount : 8000 ,
14
- currency : "USD" ,
15
- } ,
16
- } ,
17
- } ;
18
-
19
- const multiUseMandateData = {
20
- customer_acceptance : customerAcceptance ,
21
- mandate_type : {
22
- multi_use : {
23
- amount : 8000 ,
24
- currency : "USD" ,
25
- } ,
26
- } ,
27
- } ;
28
-
29
11
const successfulNo3DSCardDetails = {
30
12
card_number : "4242424242424242" ,
31
13
card_exp_month : "12" ,
You can’t perform that action at this time.
0 commit comments