()
| 79 | }; |
| 80 | |
| 81 | const testFilePath = (): string => { |
| 82 | const random = Math.random().toString(36).substring(2, 15); |
| 83 | const filename = 'gotifytest_' + random + windowsPrefix; |
| 84 | return path.join(testBuildPath, filename); |
| 85 | }; |
| 86 | |
| 87 | const waitForGotify = (url: string): Promise<void> => |
| 88 | new Promise((resolve, err) => { |
no outgoing calls
no test coverage detected
searching dependent graphs…