Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormattab <matthieu.aubry@gmail.com>2016-07-13 02:03:45 +0300
committermattab <matthieu.aubry@gmail.com>2016-07-13 02:04:01 +0300
commit0d825c40d2e8ad8b43d14429586c67e998ace977 (patch)
tree3dcae113b265fa384b0b47266e58f59e250f6b7e /tests/javascript
parentea9d961ab76adffcdf2bb342a05120487f9ada4c (diff)
When JSLint validation failed, explain where to find the error messages refs https://github.com/piwik/piwik/pull/10271#issuecomment-231608719
Diffstat (limited to 'tests/javascript')
-rw-r--r--tests/javascript/index.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/javascript/index.php b/tests/javascript/index.php
index bd592f7cf1..57cbd4d086 100644
--- a/tests/javascript/index.php
+++ b/tests/javascript/index.php
@@ -441,7 +441,7 @@ function PiwikTest() {
echo "$src"; ?>';
var result = JSLINT(src);
- ok( result, "JSLint" );
+ ok( result, "JSLint did not validate, please check the browser console for the list of jslint errors." );
if (console && console.log && !result) {
console.log('JSLINT errors', JSLINT.errors);
}