File tree Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -34,8 +34,8 @@ export const mockBounty: Bounty = {
34
34
image : undefined ,
35
35
id : "" ,
36
36
ref : "" ,
37
- created_at : "" ,
38
- updated_at : "" ,
37
+ created_at : new Date ( ) . toISOString ( ) ,
38
+ updated_at : new Date ( ) . toISOString ( ) ,
39
39
icon : "" ,
40
40
active : false ,
41
41
colors,
Original file line number Diff line number Diff line change @@ -125,7 +125,7 @@ export const mockTeamMember: TeamMember = {
125
125
export const mockTeam : Team = {
126
126
challenge : challenge ,
127
127
challenge_ref : "challenge ref" ,
128
- created_at : "created at" ,
128
+ created_at : new Date ( ) . toISOString ( ) ,
129
129
id : "id" ,
130
130
locked : true ,
131
131
name : "Master" ,
@@ -135,7 +135,7 @@ export const mockTeam: Team = {
135
135
members : [ mockTeamMember ] ,
136
136
ref : "" ,
137
137
timestamp : "" ,
138
- updated_at : "" ,
138
+ updated_at : new Date ( ) . toISOString ( ) ,
139
139
} ;
140
140
141
141
export const mockFeedback : Feedback = {
Original file line number Diff line number Diff line change @@ -14,8 +14,8 @@ export const mockCertificateData = {
14
14
export const Rubric = {
15
15
id : "id" ,
16
16
ref : "rubric references" ,
17
- created_at : "Wednesday" ,
18
- updated_at : "Thursday" ,
17
+ created_at : new Date ( ) . toISOString ( ) ,
18
+ updated_at : new Date ( ) . toISOString ( ) ,
19
19
challenge : "Challenge" ,
20
20
text : "Challenge text" ,
21
21
type : "challenge type" ,
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ import { mockUser } from "./user";
5
5
export const mockScoreboard : Scoreboard = {
6
6
id : "id" ,
7
7
ref : "ref" ,
8
- created_at : "Monday" ,
8
+ created_at : new Date ( ) . toISOString ( ) ,
9
9
updated_at : "February" ,
10
10
score : 3 ,
11
11
user_id : "user_id" ,
You can’t perform that action at this time.
0 commit comments