(config, suite)
| 2306 | const reportDir = test.info().outputPath('blob-report'); |
| 2307 | class CustomReporter { |
| 2308 | onBegin(config, suite) { |
| 2309 | const projectNames = config.projects.map(p => p.name); |
| 2310 | console.log('%%' + JSON.stringify(projectNames)); |
| 2311 | } |
| 2312 | } |
| 2313 | const files = { |
| 2314 | 'reporter.js': `module.exports = ${CustomReporter.toString()};`, |