-
-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b52dd18
commit b83ab3c
Showing
1 changed file
with
5 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
* Project https://github.com/simple-robot/simpler-robot | ||
* Email [email protected] | ||
* | ||
* This file is part of the Simple Robot Library. | ||
* This file is part of the Simple Robot Library (Alias: simple-robot, simbot, etc.). | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Lesser General Public License as published by | ||
|
@@ -46,7 +46,10 @@ inline fun KotlinJvmTarget.configJava(crossinline block: KotlinJvmTarget.() -> U | |
} | ||
|
||
testRuns["test"].executionTask.configure { | ||
useJUnitPlatform() | ||
useJUnitPlatform { | ||
val dir = project.rootProject.layout.buildDirectory.dir("test-reports/html/${project.name}") | ||
reports.html.outputLocation.set(dir) | ||
} | ||
} | ||
block() | ||
} | ||
|