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

github.com/candy-chat/candy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorMichael Weibel <michael.weibel@gmail.com>2014-08-06 20:44:42 +0400
committerMichael Weibel <michael.weibel@gmail.com>2014-08-06 20:44:42 +0400
commit5f81e0b280ebe7833860ded3faf15dc5b6935f1b (patch)
tree6c143aac2dc951ea34385c034d05aa3131a6181c /tests
parentf19a0e28ca0c3a0b2e9f12f0cc2f41c42dc49804 (diff)
Fix excludeInstrumentation regex to not include libs.bundle.js
Diffstat (limited to 'tests')
-rw-r--r--tests/intern.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/intern.js b/tests/intern.js
index ef4a27d..7ec3a03 100644
--- a/tests/intern.js
+++ b/tests/intern.js
@@ -63,7 +63,7 @@ define({
functionalSuites: [ 'tests/candy/functional/all' ],
// A regular expression matching URLs to files that should not be included in code coverage analysis
- excludeInstrumentation: /^(?:tests|node_modules|bower_components|libs)\//,
+ excludeInstrumentation: /^(?:tests\/|node_modules\/|bower_components\/|libs\.[^.]+\.js)/,
reporters: ['runner', 'lcov']
});