fork(1) download
  1. function getData(testName, reportPaths, callback) {
  2. var testData = [];
  3. reportPaths.forEach((report) => {
  4. getTestByName(report, testName, function(testInfo) {
  5. if (!testData[report])
  6. testData[report] = [];
  7. testData[report].push(testInfo);
  8. });
  9. });
  10.  
  11. callback(testData);
  12. }
Success #stdin #stdout 0.01s 30384KB
stdin
Standard input is empty
stdout
Standard output is empty