(charCodeArr: Uint8Array)
| 194 | |
| 195 | it('calls `PushManager.subscribe()` (with appropriate options)', async () => { |
| 196 | const decode = (charCodeArr: Uint8Array) => |
| 197 | Array.from(charCodeArr) |
| 198 | .map((c) => String.fromCharCode(c)) |
| 199 | .join(''); |
| 200 | |
| 201 | // atob('c3ViamVjdHM/') === 'subjects?' |
| 202 | const serverPublicKey = 'c3ViamVjdHM_'; |
no test coverage detected
searching dependent graphs…