(msg: Partial<IMessage>, token: string)
| 148 | const backup3 = m('Backup done', 'Gotify Backup finished (0.1MB).'); |
| 149 | |
| 150 | const createMessage = (msg: Partial<IMessage>, token: string) => |
| 151 | axios.post<IMessage>(`${gotify.url}/message`, msg, { |
| 152 | headers: {'X-Gotify-Key': token}, |
| 153 | }); |
| 154 | |
| 155 | const expectMessages = async (toCheck: { |
| 156 | all: Msg[]; |
no outgoing calls
no test coverage detected
searching dependent graphs…