flow-runtime でテスト時にランタイムの型エラーでテストを落とす
yarn add babel-preset-env babel-plugin-flow-runtime flow-runtime -D
しておく。
babel-preset-env でこんな設定を書いた
.babelrc
{
"presets": [
["env", { "targets": {
"Chrome": 56
}}]
],
"plugins": [
"flow-runtime"
],
"env": {
"test": {
"presets": [
["env", { "targets": {
"node": 6
}}]
],
"plugins": [
["flow-runtime", {"assert": true}],
"transform-async-to-generator"
],
},
"production": {
"presets": [
"flow",
["env", { "targets": {
"browsers": ["last 2 versions", "IE 11"]
}}]
]
}
}
}
本筋関係ないが、開発時は Chrome ターゲットだけで頑張る設定。
$ NODE_ENV=test ava
foo.js
/* @flow */
export default function foo (): number {
return ''
}
foo.test.js
/* @flow */
import foo from './foo'
import test from 'ava'
test(async t => {
t.is(foo(), 1)
})
Author And Source
この問題について(flow-runtime でテスト時にランタイムの型エラーでテストを落とす), 我々は、より多くの情報をここで見つけました https://qiita.com/mizchi/items/ed4c4488675f249f7679著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .