File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed
buildSrc/src/test/kotlin/com/google/firebase/gradle/plugins Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -241,6 +241,13 @@ class PublishingPluginTests {
241
241
it.task(" :checkHeadDependencies" )?.outcome shouldBe FAILED
242
242
}
243
243
244
+ /* *
245
+ * Creates a [GradleRunner] to run the specified [projects].
246
+ *
247
+ * If your tests are failing, you can call [GradleRunner.forwardOutput] to enable stdout/stderr
248
+ * redirection for further debugging. Since this can be excessively verbose and slow down tests,
249
+ * this behavior is not enabled by default.
250
+ */
244
251
private fun makeGradleRunner (vararg projects : Project ) =
245
252
GradleRunner .create()
246
253
.withProjectDir(testProjectDir.root)
@@ -250,5 +257,4 @@ class PublishingPluginTests {
250
257
" firebasePublish" ,
251
258
)
252
259
.withPluginClasspath()
253
- // .forwardOutput()
254
260
}
You can’t perform that action at this time.
0 commit comments