(scores)
| 63 | ]; |
| 64 | |
| 65 | function formatScores(scores) { |
| 66 | let formattedScores = ''; |
| 67 | Object.keys(scores).map((key, index) => { |
| 68 | if (index > 0) { |
| 69 | formattedScores += ','; |
| 70 | } |
| 71 | formattedScores += `${key}:${scores[key]}`; |
| 72 | }); |
| 73 | return formattedScores; |
| 74 | } |
| 75 | |
| 76 | // Launch the light-server to run tests again |
| 77 | const urlOrDeployDir = process.argv[2]; |