()
| 4267 | } |
| 4268 | |
| 4269 | function getMockProjectEventStore(): RelayEvent[] { |
| 4270 | mockProjectEventStore ??= buildMockProjectEvents(); |
| 4271 | return mockProjectEventStore; |
| 4272 | } |
| 4273 | |
| 4274 | function filterMockProjectEvents(filter: MockFilter): RelayEvent[] { |
| 4275 | const authors = filter.authors?.map((author) => author.toLowerCase()); |
no test coverage detected