Reword test reporter message

The font tests use Jasmine too, so while they are technically unit
tests, it's a bit confusing to see `Started unit tests` when the font
tests are run on the bots.
This commit is contained in:
Tim van der Meij 2018-08-05 21:21:39 +02:00
parent 0a2ec871b6
commit f6eaa99cb2
No known key found for this signature in database
GPG Key ID: 8C3FD2925A5F2762

View File

@ -48,7 +48,7 @@ var TestReporter = function(browser, appPath) {
this.jasmineStarted = function(suiteInfo) {
this.runnerStartTime = this.now();
sendInfo('Started unit tests for ' + browser + '.');
sendInfo('Started tests for ' + browser + '.');
};
this.suiteStarted = function(result) { };