Skip to content

Commit

Permalink
Fix the mentors mocks
Browse files Browse the repository at this point in the history
  • Loading branch information
Piumal1999 committed Aug 26, 2023
1 parent 1351cfb commit 9c6ef43
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions src/__mocks__/mentors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@ export const mentors: Mentor[] = [
},
availability: true,
profile: {
created_at: '2023-06-15',
updated_at: '2023-07-05',
created_at: new Date('2021-07-05T00:00:00.000Z'),
updated_at: new Date('2021-07-06T00:00:00.000Z'),
primary_email: '[email protected]',
contact_email: '[email protected]',
first_name: 'John',
last_name: 'Doe',
image_url: 'https://xsgames.co/randomusers/avatar.php?g=male',
linkedin_url: 'https://linkedin.com/in/mentor1',
type: 'Technical',
type: 'DEFAULT',
uuid: 'abc123',
},
},
Expand All @@ -54,15 +54,15 @@ export const mentors: Mentor[] = [
},
availability: true,
profile: {
created_at: '2023-06-20',
updated_at: '2023-07-08',
created_at: new Date('2021-07-05T00:00:00.000Z'),
updated_at: new Date('2021-07-06T00:00:00.000Z'),
primary_email: '[email protected]',
contact_email: '[email protected]',
first_name: 'Jane',
last_name: 'Smith',
image_url: 'https://xsgames.co/randomusers/avatar.php?g=female',
linkedin_url: 'https://linkedin.com/in/mentor2',
type: 'Business',
type: 'DEFAULT',
uuid: 'def456',
},
},
Expand All @@ -86,15 +86,15 @@ export const mentors: Mentor[] = [
},
availability: true,
profile: {
created_at: '2023-06-25',
updated_at: '2023-07-07',
created_at: new Date('2021-07-05T00:00:00.000Z'),
updated_at: new Date('2021-07-06T00:00:00.000Z'),
primary_email: '[email protected]',
contact_email: '[email protected]',
first_name: 'Emily',
last_name: 'Johnson',
image_url: '',
linkedin_url: 'https://linkedin.com/in/mentor3',
type: 'Design',
type: 'DEFAULT',
uuid: 'ghi789',
},
},
Expand Down

0 comments on commit 9c6ef43

Please sign in to comment.