Skip to content

Commit

Permalink
Add id property to project object in projectController.test.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
absternator committed Mar 1, 2024
1 parent e397dea commit a001495
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion app/server/tests/unit/controllers/projectController.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,7 @@ describe("projectController", () => {
samples: mockProjectSampleData,
timestamp: 12321,
name: "test project",
id: "testProjectId",
status: mockRunStatus
}
});
Expand Down Expand Up @@ -235,7 +236,8 @@ describe("projectController", () => {
hash: null,
samples: mockProjectSampleData,
timestamp: 1111111,
name: "test project"
name: "test project",
id: "testProjectId"
}
});
});
Expand Down

0 comments on commit a001495

Please sign in to comment.