@@ -19,7 +19,7 @@ work, but are not supported.
1919
2020| Plugin version | Gradle version | Android Gradle version |
2121| -------------- | -------------- | ---------------------- |
22- | 0.5.0 | 6.7 | 4.1.1 |
22+ | 0.5.1 | 6.7 | 4.1.1 |
2323| 0.4.0 | 6.5 | 4.0.0 |
2424| 0.3.3 | 5.4.1 | 3.4.1 |
2525| 0.3.2 | 5.3 | 3.3.2 |
@@ -190,10 +190,10 @@ testLab {
190190 // Extra values to send with all tests for use with Cloud Functions.
191191 //
192192 // For each test, these values will be merged with the test's `clientDetails`,
193- // with the test's values taking priority for identical keys.
193+ // with the test's values taking priority for identical keys.
194194 //
195195 // These values can be accessed via `testMatrix.clientInfo.details` in a Cloud Functions script. See the
196- // Firebase documentation for more information:
196+ // Firebase documentation for more information:
197197 // https://firebase.google.com/docs/test-lab/extend-with-functions#access_client_details]
198198 clientDetails.put(" pull-request" , " https://github.com/owner/repo/pulls/1234" )
199199
@@ -214,7 +214,7 @@ testLab {
214214 // Test targets to execute. Optional; if empty, all targets in the module will
215215 // be ran.
216216 targets {
217-
217+
218218 // Include all tests in the given packages.
219219 packages.add(" com.my.package.name" )
220220
@@ -229,7 +229,7 @@ testLab {
229229 classes.add(" !com.package.Class" )
230230 classes.add(" !com.package.Class#method" )
231231
232- // Include tests annotated with *all* of the given annotations.
232+ // Include tests annotated with *all* of the given annotations.
233233 annotations.add(" com.package.Annotation" )
234234
235235 // Exclude tests annotated with *any* of the given annotations.
@@ -240,17 +240,17 @@ testLab {
240240
241241 // Exclude tests listed in a file located at the given path on the target device.
242242 excludeFile.set(" /data/local/tmp/exclude.txt" )
243-
243+
244244 // Include tests matching the given regular expression.
245245 regex.set(""" ^com\.package\.(MyClass|OtherClass)#test.+""" )
246246
247247 // Include tests annotated with `SmallTest`, `MediumTest`, or `LargeTest` annotations.
248248 size.set(TestSize .LARGE ) // Alternatives: TestSize.MEDIUM, TestSize.SMALL
249-
249+
250250 // Uniformly distribute test targets among this number of shards. Shards are
251251 // executed in parallel across all devices.
252252 shardCount.set(10 )
253-
253+
254254 // Add an explicit shard of test targets. Shards are executed in parallel
255255 // across all devices.
256256 shard {
@@ -325,26 +325,26 @@ testLab {
325325 text(resourceName = " username" , inputText = " alice" )
326326 }
327327
328- // A JSON file with a sequence of actions Robo should perform as a prologue for the
328+ // A JSON file with a sequence of actions Robo should perform as a prologue for the
329329 // crawl. Optional.
330330 script.set(file(" robo-script.json" ))
331-
331+
332332 // Configures the starting intents used to launch the app for the crawl. Optional.
333333 startingIntents {
334-
334+
335335 // Add an intent that starts the main launcher activity.
336336 launcherActivity()
337337
338338 // Add an intent that starts the main launcher activity.
339339 launcherActivity {
340-
340+
341341 // Timeout in seconds for the intent.
342342 timeout.set(10 )
343343 }
344344
345345 // Add a starting intent specified by an action, uri, and categories.
346346 startActivity {
347-
347+
348348 // Action name. Required.
349349 action.set(" anroid.intent.action.VIEW" )
350350
@@ -395,10 +395,10 @@ testLab {
395395 // Extra values to send with all tests for use with Cloud Functions.
396396 //
397397 // For each test, these values will be merged with the test's `clientDetails`,
398- // with the test's values taking priority for identical keys.
398+ // with the test's values taking priority for identical keys.
399399 //
400400 // These values can be accessed via `testMatrix.clientInfo.details` in a Cloud Functions script. See the
401- // Firebase documentation for more information:
401+ // Firebase documentation for more information:
402402 // https://firebase.google.com/docs/test-lab/extend-with-functions#access_client_details]
403403 clientDetails.put("pull-request", "https://github.com/owner/repo/pulls/1234")
404404
@@ -419,7 +419,7 @@ testLab {
419419 // Test targets to execute. Optional; if empty, all targets in the module will
420420 // be ran.
421421 targets {
422-
422+
423423 // Include all tests in the given packages.
424424 packages.add("com.my.package.name")
425425
@@ -434,7 +434,7 @@ testLab {
434434 classes.add("!com.package.Class")
435435 classes.add("!com.package.Class#method")
436436
437- // Include tests annotated with *all* of the given annotations.
437+ // Include tests annotated with *all* of the given annotations.
438438 annotations.add("com.package.Annotation")
439439
440440 // Exclude tests annotated with *any* of the given annotations.
@@ -445,17 +445,17 @@ testLab {
445445
446446 // Exclude tests listed in a file located at the given path on the target device.
447447 excludeFile = "/data/local/tmp/exclude.txt"
448-
448+
449449 // Include tests matching the given regular expression.
450450 regex = $/^com\.package\.(MyClass|OtherClass)#test.+/$
451451
452452 // Include tests annotated with `SmallTest`, `MediumTest`, or `LargeTest` annotations.
453453 size = TestSize.LARGE // Alternatives: TestSize.MEDIUM, TestSize.SMALL
454-
454+
455455 // Uniformly distribute test targets among this number of shards. Shards are
456456 // executed in parallel across all devices.
457457 shardCount.set(10)
458-
458+
459459 // Add an explicit shard of test targets. Shards are executed in parallel
460460 // across all devices.
461461 shard {
@@ -530,10 +530,10 @@ testLab {
530530 text("username", "alice")
531531 }
532532
533- // A JSON file with a sequence of actions Robo should perform as a prologue for the
533+ // A JSON file with a sequence of actions Robo should perform as a prologue for the
534534 // crawl. Optional.
535535 script = file("robo-script.json")
536-
536+
537537 // Configures the starting intents used to launch the app for the crawl. Optional.
538538 startingIntents {
539539
@@ -588,11 +588,11 @@ additionalApks.from(
588588
589589// Extra values to send with this test for use with Cloud Functions.
590590//
591- // These values will be merged with `testLab.clientDetails`, with the values from this
591+ // These values will be merged with `testLab.clientDetails`, with the values from this
592592// test overriding existing values with identical keys.
593593//
594- // These values can be accessed via `testMatrix.clientInfo.details` in a Cloud Functions
595- // script. See the Firebase documentation for more information:
594+ // These values can be accessed via `testMatrix.clientInfo.details` in a Cloud Functions
595+ // script. See the Firebase documentation for more information:
596596// https://firebase.google.com/docs/test-lab/extend-with-functions#access_client_details
597597clientDetails.put(" test-name" , name)
598598
@@ -692,11 +692,11 @@ additionalApks.from(
692692
693693// Extra values to send with this test for use with Cloud Functions.
694694//
695- // These values will be merged with `testLab.clientDetails`, with the values from this
695+ // These values will be merged with `testLab.clientDetails`, with the values from this
696696// test overriding existing values with identical keys.
697697//
698- // These values can be accessed via `testMatrix.clientInfo.details` in a Cloud Functions
699- // script. See the Firebase documentation for more information:
698+ // These values can be accessed via `testMatrix.clientInfo.details` in a Cloud Functions
699+ // script. See the Firebase documentation for more information:
700700// https://firebase.google.com/docs/test-lab/extend-with-functions#access_client_details
701701clientDetails.put("test-name", name)
702702
0 commit comments