(name: string)
| 63 | } as const; |
| 64 | |
| 65 | function createDefaultProject(name: string) { |
| 66 | return createProto(ProjectSchema, { |
| 67 | name, |
| 68 | title: "Default project", |
| 69 | ...PROJECT_DEFAULTS, |
| 70 | }); |
| 71 | } |
| 72 | |
| 73 | function createUnknownProject() { |
| 74 | return createProto(ProjectSchema, { |
no outgoing calls
no test coverage detected