How to toggle report backup without running karate-junit5 in parallel
I’ve noticed that if I execute parallel tests with junit5 karate would backup reports by default: //have report backup @Test void runParallel() { Results results = Karate.run(String.join(File.separator,"classpath:steps")).tags("@Read") .reportDir(KARATE_REPORT_DIR) .outputJunitXml(true) .parallel(5); assertEquals(0, results.getFailCount(), results.getErrorMessages()); } But not the same when running a single test with karate-junit5 interface, even with backupReportDir(true) // no report backup @Karate.Test Karate… Read More How to toggle report backup without running karate-junit5 in parallel