-
Notifications
You must be signed in to change notification settings - Fork 41
/
mocks.ts
73 lines (67 loc) · 1.78 KB
/
mocks.ts
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
72
73
const randomString = Math.random().toString(36)
export const mockMentor = {
email: `mentor${randomString}@gmail.com`,
password: '123'
}
export const mockAdmin = {
email: `admin${randomString}@gmail.com`,
password: 'admin123'
}
export const mockUser = {
email: `user${randomString}@gmail.com`,
password: '123'
}
export const mentorApplicationInfo = {
application: [
{
question: 'What is your country?',
answers: 'Singapore'
},
{
question: 'What is your expertise?',
answers: 'Software Engineering'
},
{
question: 'What is your mentoring startegy?',
answers: 'I will provide my insights'
}
],
categoryId: '60b5b847-99a2-4e47-b35b-81b4284311dd'
}
export const platformInfo = {
description: 'This is a sample description.',
mentor_questions: [
{
question: 'What are your career goals?',
question_type: 'text',
options: []
},
{
question: 'How do you handle challenges?',
question_type: 'text',
options: []
},
{
question: 'Tell me about a time when you demonstrated leadership skills.',
question_type: 'text',
options: []
}
],
image_url: 'https://example.com/images/sample.jpg',
landing_page_url: 'https://example.com/landing-page',
email_templates: {
template1: {
subject: 'Welcome to our mentoring program!',
body: 'Dear {{mentor_name}},\n\nWe are excited to have you join our mentoring program...'
},
template2: {
subject: 'Follow-up on your mentoring session',
body: 'Dear {{mentee_name}},\n\nI wanted to follow up on our recent mentoring session...'
}
},
title: 'Sample Mentoring Program'
}
export const emailTemplateInfo = {
subject: 'Follow-up on your mentoring session',
content: 'Sample content'
}