mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
f9286f74bf
* Run tests serially. * Make test result verbose. * Don't wait until closing the browser. * Add some debug logs. * Add bailing support. * Get the browser with a timeout. * Add some comments. * Remove istanbul babel tranformation. Jest already do it and it's breaking our coveralls hit.
20 lines
263 B
Plaintext
20 lines
263 B
Plaintext
{
|
|
"presets": [
|
|
"latest",
|
|
"react"
|
|
],
|
|
"plugins": [
|
|
"transform-object-rest-spread",
|
|
"transform-class-properties",
|
|
"transform-runtime"
|
|
],
|
|
"env": {
|
|
"test": {
|
|
"presets": [
|
|
"es2015",
|
|
"./babel"
|
|
]
|
|
}
|
|
}
|
|
}
|