expoでJest使ってテストしようとするとunexpected tokenでしばかれる
jest.config.jsに
module.exports = {
preset: 'jest-expo',
transform: {
'\\.js$': '<rootDir>/node_modules/react-native/jest/preprocessor.js'
}
};
こいつをねじこむといいらしい。(jest-expoは入ってる前提で)
追記:
module.exports = {
preset: 'jest-expo',
transform: {
'\\.js$': '<rootDir>/node_modules/react-native/jest/preprocessor.js',
'\\.tsx$': '<rootDir>/node_modules/react-native/jest/preprocessor.js'
}
};
割と当然だけどTypeScriptでtsxとかの拡張子使ってる時にとかしないとエラーが出る
Author And Source
この問題について(expoでJest使ってテストしようとするとunexpected tokenでしばかれる), 我々は、より多くの情報をここで見つけました https://qiita.com/TinyKitten/items/9c04457addadd26d3df8著者帰属:元の著者の情報は、元の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 .