File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -100,25 +100,25 @@ export const submission: Submission = {
100
100
} ;
101
101
102
102
export const mockInvite = {
103
- created_at : "tuesday" ,
103
+ created_at : new Date ( ) . toISOString ( ) ,
104
104
id : "invite" ,
105
105
ref : "invitation ref" ,
106
106
status : "invitation status" ,
107
107
team_ref : "team reference" ,
108
108
timestamp : 3 ,
109
- updated_at : "wednesday" ,
109
+ updated_at : new Date ( ) . toISOString ( ) ,
110
110
user : mockUser ,
111
111
user_id : "user id" ,
112
112
} ;
113
113
114
114
export const mockTeamMember : TeamMember = {
115
- created_at : "created_at" ,
115
+ created_at : new Date ( ) . toISOString ( ) ,
116
116
id : "id" ,
117
117
joined_on : "joined_on" ,
118
118
ref : "ref" ,
119
119
team_ref : "team reference" ,
120
120
timestamp : 3 ,
121
- updated_at : "wednesday" ,
121
+ updated_at : new Date ( ) . toISOString ( ) ,
122
122
user : mockUser ,
123
123
} ;
124
124
You can’t perform that action at this time.
0 commit comments