(
overrides: Partial<TlaGroupUser> & { userId: string; groupId: string }
)
| 68 | } |
| 69 | |
| 70 | function makeGroupUser( |
| 71 | overrides: Partial<TlaGroupUser> & { userId: string; groupId: string } |
| 72 | ): TlaGroupUser { |
| 73 | return { |
| 74 | createdAt: 1, |
| 75 | updatedAt: 1, |
| 76 | role: 'member', |
| 77 | userName: 'Test', |
| 78 | userColor: '#000', |
| 79 | index: 'a1' as IndexKey, |
| 80 | ...overrides, |
| 81 | } |
| 82 | } |
| 83 | |
| 84 | function makeGroupFile( |
| 85 | overrides: Partial<TlaGroupFile> & { fileId: string; groupId: string } |
no outgoing calls
no test coverage detected
searching dependent graphs…