(content: string)
| 53 | }); |
| 54 | |
| 55 | const createContentEvent = (content: string): ServerAnusContentEvent => ({ |
| 56 | type: AnusEventType.Content, |
| 57 | value: content, |
| 58 | }); |
| 59 | |
| 60 | const createRepetitiveContent = (id: number, length: number): string => { |
| 61 | const baseString = `This is a unique sentence, id=${id}. `; |
no outgoing calls
no test coverage detected