(length: number)
| 84 | } |
| 85 | |
| 86 | function getRandomString(length: number): string { |
| 87 | const SUFFIX_CHAR_SET = "abcdefghijklmnopqrstuvwxyz0123456789"; |
| 88 | let result = ""; |
| 89 | for (let i = 0; i < length; i++) { |
| 90 | result += SUFFIX_CHAR_SET.charAt(Math.floor(Math.random() * SUFFIX_CHAR_SET.length)); |
| 91 | } |
| 92 | return result; |
| 93 | } |
| 94 | const fdcTest = toPath("fdc-test"); |
| 95 | |
| 96 | // Each test run should use a random serviceId and databaseId. |
no outgoing calls
no test coverage detected
searching dependent graphs…