0
A
回答
0
您應該添加transformIgnorePatterns
到您的package.json:
"jest": {
"preset": "react-native",
"transformIgnorePatterns": [
"/node_modules/(?!react-native|*put library here*)"
]
},
0
只需使用test.skip
it.skip
,xit
或xtest
代替test
或it
跳過特定測試。看看docs。
+0
這個解決方案的問題是我仍然想運行測試,因爲它測試我的組件。但是它們在我的組件導入過程中出錯。 –
0
在我jestsetup.js,請加
console.error = message => {
// throw new Error(message);
};
我jestsetup.js文件
// Make Enzyme functions available in all test files without importing
import { shallow, render, mount } from 'enzyme';
global.shallow = shallow;
global.render = render;
global.mount = mount;
// Fail tests on any warning
console.error = message => {
// throw new Error(message);
};
相關問題
- 1. Jest覆蓋忽略
- 2. Jest:忽略代碼覆蓋率的行
- 3. rxjs:switchMap忽略錯誤
- 4. Jest不會忽略.hbs文件
- 5. 的file_get_contents忽略錯誤
- 6. 忽略JMeter中的錯誤
- 7. 忽略R中的錯誤
- 8. Jest-cli錯誤
- 9. QT [install_target]錯誤1(忽略)
- 10. 忽略零除法錯誤
- 11. jquery.validate忽略錯誤messgae
- 12. Excel宏:忽略錯誤
- 13. 忽略git顯示錯誤
- 14. 用CruiseControl.Net忽略SVN錯誤
- 15. HtmlUnit忽略JavaScript錯誤?
- 16. ThreadPoolExecutor忽略錯誤(OutOfMemoryError)
- 17. Makefile忽略段錯誤
- 18. 忽略attrib屬性錯誤
- 19. 忽略插入錯誤
- 20. RestSharp - 忽略SSL錯誤
- 21. C#忽略證書錯誤?
- 22. MySql忽略外鍵錯誤
- 23. 好主意忽略錯誤?
- 24. Common Lisp忽略錯誤
- 25. SAS:如何忽略錯誤?
- 26. WinJS - 忽略iframe javascript錯誤
- 27. eclipse neon - 忽略json錯誤
- 28. 如何忽略mv錯誤?
- 29. Excel VBA忽略錯誤
- 30. java錯誤advertence - 忽略
不幸的是,它不會忽略我的錯誤。謝謝你的回答。 –
你有什麼錯誤? –
'TypeError:無法讀取Object中未定義的 的屬性'樣式'。(node_modules/react-native-snap-carousel/index.js:472:842)' 並且在運行應用程序時此錯誤不會彈出 –