We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b256161 commit 24e50d1Copy full SHA for 24e50d1
build.gradle.kts
@@ -60,11 +60,18 @@ testing {
60
}
61
62
63
-node { nodeProjectDir = file("${project.projectDir}/js") }
+node {
64
+ nodeProjectDir = file("${project.projectDir}/js")
65
+ download = true
66
+}
67
68
tasks {
69
check { dependsOn(npmInstall) }
- test { dependsOn(npmInstall) }
70
+ test {
71
+ dependsOn(npmInstall)
72
+ jvmArgs.add("-javaagent:${mockitoAgent.asPath}")
73
+ }
74
+ named<Test>("integrationTest") { jvmArgs.add("-javaagent:${mockitoAgent.asPath}") }
75
76
77
kover { reports { total { html { onCheck = true } } } }
0 commit comments