テストコンポーネント
Jestと反応するコンポーネントについて非常に簡単なテストを実行しようとしています。私はテストする必要はありません、私のコンポーネントファイルJestがテスト時に.less importを無視するようにします。
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 私のために働いた。 –