-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtest_data.js
71 lines (65 loc) · 1.39 KB
/
test_data.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
const data = {};
data.users = [
{
first_name: 'User',
last_name: 'One',
nric: 'S1234567A',
email: '[email protected]',
password: 'password',
credit_score: 50,
contact_number: '88888888',
client_id:'8a8e862a7217508901721d34c12b33ee',
},
{
first_name: 'User',
last_name: 'Two',
nric: 'S1234567B',
email: '[email protected]',
password: 'password',
credit_score: 50,
contact_number: '11111111',
client_id:'8a8e862a7217508901721ec1143e388d',
},
{
first_name: 'User',
last_name: 'Three',
nric: 'S1234567C',
email: '[email protected]',
credit_score: 50,
password: 'password',
contact_number: '11111111',
client_id:'8a8e862a7217508901721ec1abe0389d',
},
];
data.documents = [
{
title: 'Certificate',
},
{
title: 'Nric',
},
{
title: 'Passport',
},
];
data.cards = [
{
card_number: '8d212293-c6bc-4738-afaf-bc0ae5456df5',
first_name: 'User',
last_name: 'One',
expiry_date: Date.parse('2021-08-11T10:00:00.000Z')
},
{
card_number: '7a353971-l4uo-9877-algd-lz1fe25349i9',
first_name: 'User',
last_name: 'One',
expiry_date: Date.parse('2021-08-11T10:00:00.000Z')
},
{
card_number: '7a353971-l4uo-9877-algd-bp0df3321ly2',
first_name: 'User',
last_name: 'One',
expiry_date: Date.parse('2021-08-11T10:00:00.000Z')
},
];
module.exports = data;