diff --git a/build.gradle b/build.gradle index dd4f1e16614af986773fb2035e810bee5a5a458d..c67bb7fe1d539f927064305144720a08b8016dc0 100644 --- a/build.gradle +++ b/build.gradle @@ -41,9 +41,11 @@ application { } test { - // Enable executing tests in parallel, as recommended here: + // We could enable executing tests in parallel, as recommended here: // https://docs.gradle.org/8.12/userguide/performance.html#execute_tests_in_parallel - maxParallelForks = Runtime.runtime.availableProcessors().intdiv(2) ?: 1 + // But this currently doesn't work with the JavaScript tests, + // because multiple tests copy files to the same location and conflict with each other. + //maxParallelForks = Runtime.runtime.availableProcessors().intdiv(2) ?: 1 testLogging { exceptionFormat = 'full'