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

github.com/twbs/rewire.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohannes Ewald <johannes.ewald@peerigon.com>2015-11-16 00:02:50 +0300
committerJohannes Ewald <johannes.ewald@peerigon.com>2015-11-16 00:02:50 +0300
commita7bdea28cca4bf37ad43e4948997b0af48822d6a (patch)
treeb7e65b3ab890045ec4ee21f74c49dad24d779ea4 /.istanbul.yml
parent5a8ba82b39f69f3750ddf83c6f6fc6f6e2ecb2a2 (diff)
Move testLib into dedicated folder inside root folder
Diffstat (limited to '.istanbul.yml')
-rw-r--r--.istanbul.yml8
1 files changed, 5 insertions, 3 deletions
diff --git a/.istanbul.yml b/.istanbul.yml
index 21bf908..be3e16e 100644
--- a/.istanbul.yml
+++ b/.istanbul.yml
@@ -1,7 +1,9 @@
instrumentation:
- # These functions will be stringified and evaled again. Thus it's difficult to include them into the test coverage
excludes: [
+ # These functions will be stringified and evaled again. Thus it's difficult to include them into the test coverage
'lib/__get__.js',
'lib/__set__.js',
- 'lib/__with__.js'
- ] \ No newline at end of file
+ 'lib/__with__.js',
+ # Ignore shared test cases. These are just in the lib folder because they should
+ 'testLib/*'
+ ]