vscode-extension-tester icon indicating copy to clipboard operation
vscode-extension-tester copied to clipboard

[🚀 Request] tests results as JSON file output

Open brianignacio5 opened this issue 7 months ago • 0 comments

Describe the request

Add additional output file.

I would like to generate a json file with the test results as is done in mocha.

I've tried using a .mocharc.js

module.exports = {
    reporter: 'json',
    'reporter-option': {
        output: './out/ui-test-results.json'
    }
} 

And while the console prints the expected mocha json output, I can't seem to generate the file.

Usage

I would like to use the json for a GitHub action dorny/test-reporter@v2 to show UI results.

brianignacio5 avatar Jul 08 '25 11:07 brianignacio5