測試組件
我試圖對Jest的反應組件進行一些非常簡單的測試。我遇到了,因爲這條線的問題在我的組件文件使測試在測試時忽略無關輸入
import {} from './style.less';
這裏進口的頂部並不需要進行測試,並在理想情況下從測試忽略。
[NPM測試]
當測試通過npm test
運行的結果我得到的迴應
FAIL tests/app_test.js ● Runtime Error SyntaxError: Unexpected token { in file 'client/components/app/style.less'.
Make sure your preprocessor is set up correctly and ensure your 'preprocessorIgnorePatterns' configuration is correct: http://facebook.github.io/jest/docs/api.html#preprocessorignorepatterns-array-string If you are currently setting up Jest or modifying your preprocessor, try
jest --no-cache
. Preprocessor: node_modules/jest-css-modules. Jest tried to the execute the following preprocessed code: //some .less code
但是,如果我註釋掉少進口線我的測試運行正常。
問題
我怎樣才能得到開玩笑跳過這行代碼或忽略此導入?
檢查該解決方案http://stackoverflow.com/a/36137733/2765745 爲我工作。 –