chore(tests): set node to current for .babelrc (#3466)

This skips quite many transforms, potentially speeding up the tests.
This commit is contained in:
Tatsuyuki Ishi 2018-06-22 10:45:53 +00:00 committed by Pooya Parsa
parent feabdcafaa
commit e993616c07
1 changed files with 5 additions and 1 deletions

View File

@ -2,7 +2,11 @@
"env": {
"test": {
"presets": [
"env"
["env", {
"targets": {
"node": "current"
}
}]
]
}
}