diff --git a/sonar-project.properties b/sonar-project.properties
index f636a73..15d6655 100644
--- a/sonar-project.properties
+++ b/sonar-project.properties
@@ -6,10 +6,13 @@ sonar.projectName=Website Not Found
 #sonar.projectVersion=1.0
 
 # Path is relative to the sonar-project.properties file. Replace "\" by "/" on Windows.
+# Defaults to .
 sonar.sources=src
 sonar.exclusions=src/public/**/*,src/resources/_gen/**/*
 sonar.tests=tests
+# Within the directories defined by sonar.tests, subset of files that will be considered as tests
+sonar.test.inclusions=**/test.js
 sonar.javascript.lcov.reportPaths=coverage/lcov.info
 
 # Encoding of the source code. Default is default system encoding
-#sonar.sourceEncoding=UTF-8
+sonar.sourceEncoding=UTF-8