0
こんにちはJestでES6を使用するにはどうしたらいいですか?彼らは私にスプレッド(オペレーター)と輸出のミスを送っているからです。 jestを変更するには?Jest ES6予期しないトークンのインポートエラー?
export default function reducer(state={
open:false
}, action) {
switch (action.type) {
case "HANDLE_TAP_HOME": {
return {...state,open:action.open}
}
}
return state
}
試験
import base from '../../client/src/redux/reducer/reducers/Admin/base/Index'
describe('request to Reducer',()=>{
it('fetch',()=>{
expect(base(undefiend,{type:'nothing'})).toEqual({
open:false
})
})
})
あなたが投稿したコードにはスプレッド演算子がありません。 – estus
ここに来ているエラーは何ですか? –
予期しないトークンのインポート –