mirror of
https://github.com/apache/cordova-android.git
synced 2025-01-18 22:52:54 +08:00
fix: logging method
This commit is contained in:
parent
f3e98c8651
commit
5e52b7ee77
@ -47,7 +47,7 @@ class AndroidTestRunner {
|
||||
}
|
||||
|
||||
_log (...args) {
|
||||
console.log.apply(console, [`[${this.testTitle}]`, ...args])
|
||||
console.log(...[`[${this.testTitle}]`, ...args]);
|
||||
}
|
||||
|
||||
run () {
|
||||
@ -74,7 +74,7 @@ class AndroidTestRunner {
|
||||
|
||||
.then(_ => this._log('Running Java Instrumentation Tests'))
|
||||
.then(_ => this._gradlew('connectedAndroidTest'))
|
||||
.then(_ => this._log('Finished Java Instrumentation Tests'))
|
||||
.then(_ => this._log('Finished Java Instrumentation Tests'));
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user