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

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohann-S <johann.servoire@gmail.com>2018-03-02 16:15:20 +0300
committerJohann-S <johann.servoire@gmail.com>2018-03-05 12:04:54 +0300
commite43f97304eac2b276c755267e29de70ae2ac7afd (patch)
treee2fb884e0b4035cdac5329b993913acd0333938e /.babelrc.js
parentb7a549c8c3265109c447ee758e3119a50c9465ca (diff)
add code coverage
Diffstat (limited to '.babelrc.js')
-rw-r--r--.babelrc.js7
1 files changed, 6 insertions, 1 deletions
diff --git a/.babelrc.js b/.babelrc.js
index 277f96ae74..a4ef8cb6df 100644
--- a/.babelrc.js
+++ b/.babelrc.js
@@ -12,5 +12,10 @@ module.exports = {
plugins: [
process.env.PLUGINS && 'transform-es2015-modules-strip',
'@babel/proposal-object-rest-spread'
- ].filter(Boolean)
+ ].filter(Boolean),
+ env: {
+ test: {
+ plugins: [ 'istanbul' ]
+ }
+ }
};