You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am experimenting with the parallel testing feature, and I can't seem to get parallel tests to generate xunit output for each of my tests. I would like the parallel tests to either drop individual test result files, or to collect all the parallel test results into one file, but the current test results only contain the last running test.
During my run, it looks like the parallel runner runs the tests in the sequence:
(batch 1)
test/page1_test.js
test/page2_test.js
(batch 2)
test/page3_test.js
test/page4_test.js
Since my test/page3_test.js takes longer, the only results in the test results file (xunit/page-results.xml) are for the single test of test/page3_test.js.
Can the files setting support a template or function as the destination, so that parallel test results don't clobber each other?
Thank you!
The text was updated successfully, but these errors were encountered:
Hello,
I am experimenting with the parallel testing feature, and I can't seem to get parallel tests to generate xunit output for each of my tests. I would like the parallel tests to either drop individual test result files, or to collect all the parallel test results into one file, but the current test results only contain the last running test.
I have the following test files:
My configuration looks like:
During my run, it looks like the parallel runner runs the tests in the sequence:
Since my
test/page3_test.js
takes longer, the only results in the test results file (xunit/page-results.xml
) are for the single test oftest/page3_test.js
.Can the
files
setting support a template or function as the destination, so that parallel test results don't clobber each other?Thank you!
The text was updated successfully, but these errors were encountered: