(input, fn)
| 248 | // Tests of different languages for the same exchange should be run sequentially to prevent the interleaving nonces problem. // |
| 249 | |
| 250 | const sequentialMap = async (input, fn) => { |
| 251 | |
| 252 | const result = [] |
| 253 | for (const item of input) { result.push (await fn (item)) } |
| 254 | return result |
| 255 | } |
| 256 | |
| 257 | // const getJavaArgs = (args) => { |
| 258 | // let res = "--args=\""; |
no test coverage detected
searching dependent graphs…