ci: add Java instrumentation tests

This commit is contained in:
Erisu 2021-07-27 13:33:32 +09:00
parent b6c5db3e37
commit f4a0e1ec78
No known key found for this signature in database
GPG Key ID: 2E5FF17FB26AF7F2

View File

@ -61,7 +61,9 @@ class AndroidTestRunner {
.then(_ => this._gradlew('--version'))
.then(_ => console.log(`[${this.testTitle}] Gradle wrapper is ready. Running tests now.`))
.then(_ => this._gradlew('test'))
.then(_ => console.log(`[${this.testTitle}] Java unit tests completed successfully`));
.then(_ => console.log(`[${this.testTitle}] Java unit tests completed successfully`))
.then(_ => this._gradlew('connectedAndroidTest'))
.then(_ => console.log(`[${this.testTitle}] Java instrumentation tests completed successfully`));
}
}