From f6eaa99cb2b99ef7f9240be929df352720b136c4 Mon Sep 17 00:00:00 2001 From: Tim van der Meij Date: Sun, 5 Aug 2018 21:21:39 +0200 Subject: [PATCH] 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. --- test/unit/testreporter.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/unit/testreporter.js b/test/unit/testreporter.js index 2b99d3fc9..3cea1800a 100644 --- a/test/unit/testreporter.js +++ b/test/unit/testreporter.js @@ -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) { };