Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
kcinay055679 committed Jan 10, 2025
1 parent af5596b commit 1f5bb41
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions frontend/src/app/shared/test-data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,8 @@ export const keyResultMetricMinScoring: KeyResultMetricMin = {
modifiedOn: new Date(),
changeInfo: 'Half way through',
initiatives: 'Quality before quantity',
isWriteable: true
isWriteable: true,
createdBy: 'Bob Baumeister'
},
type: 'keyResult'
} as KeyResultMetricMin;
Expand All @@ -198,7 +199,8 @@ export const keyResultMetricMinScoringInversion: KeyResultMetricMin = {
modifiedOn: new Date(),
changeInfo: 'More Changes',
initiatives: 'Some initatives',
isWriteable: true
isWriteable: true,
createdBy: 'Bob Baumeister'
},
type: 'keyResult'
} as KeyResultMetricMin;
Expand Down Expand Up @@ -369,7 +371,8 @@ export const firstCheckIn: CheckInMetricMin = {
changeInfo: '',
initiatives: '',
createdOn: new Date(),
isWriteable: true
isWriteable: true,
createdBy: 'Bob Baumeister'
};

export const secondCheckIn: CheckInMetricMin = {
Expand All @@ -380,7 +383,8 @@ export const secondCheckIn: CheckInMetricMin = {
changeInfo: '',
initiatives: '',
createdOn: new Date(),
isWriteable: true
isWriteable: true,
createdBy: 'Bob Baumeister'
};

export const testUser: User = {
Expand Down

0 comments on commit 1f5bb41

Please sign in to comment.