Report Directory Structure when using an outputFile name
See original GitHub issueThere seems to be an issue with the report directory structure when specifying an output directory and outputFile.
Using the karma.conf:
junitReporter: {
outputDir: 'reports/karma',
outputFile: 'report.xml',
suite: ''
},
I would expect: /reports/karma/$browserName/report.xml /reports/karma/$browserName/report.xml /reports/karma/$browserName/report.xml etc etc for the various browsers, however my output appears like so:
Without specifying the outputFile the output is as expected
junitReporter: {
outputDir: 'reports/karma',
outputFile: undefined,
suite: ''
},
Issue Analytics
- State:
- Created 8 years ago
- Comments:11 (6 by maintainers)
Top Results From Across the Web
How to export the directory tree of a folder in Windows
You can use any name for it, and you can specify any file type, ... Open the output file and the entire directory...
Read more >List Your Folder Structure in Windows - UW Finance
Create a list of all folders in a directory using the Windows command prompt. Use this inventory of existing folders and files to...
Read more >Folder Structure Settings | Altium Designer 23 User Manual
Use custom output file name - select to use a custom output file name. Click the drop-down arrow to open a list from...
Read more >Exporting A Directory Tree of A Folder in Windows - FSV Blog
1. Navigate to the folder and open cmd. Using the Windows Explorer, go to the folder that you need exported. · 2. Run...
Read more >How to properly set the output file structure with maven ...
The exact name of the file under the tar does not matter to me; what does matter is that the bin folder and...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I still had this issue with a newer version, but just for your information you can set useBrowserName to false:
Beautiful. Thanks guys 😃