8

このエラーが発生しています。

16 07 2015 13:03:52.741:WARN [preprocess]: Can not load "webpack"!
   Error: Can not resolve circular dependency! (Resolving: preprocessor:webpack -> webpackPlugin -> preprocessor:webpack)

私の karma.conf は次のようになります。

var webpack = require('webpack');

module.exports = function (config) {
  config.set({
    browsers: [ 'Chrome' ], //run in Chrome
    singleRun: true, //just run once by default
    frameworks: [ 'mocha' ], //use the mocha test framework
    files: [
      'tests.webpack.js' //just load this file
    ],
    preprocessors: {
      'tests.webpack.js': [ 'webpack', 'sourcemap' ] //preprocess with webpack and our sourcemap loader
    },
    reporters: [ 'dots' ], //report results in this format
    webpack: { //kind of a copy of your webpack config
      devtool: 'inline-source-map', //just do inline source maps instead of the default
      module: {
        loaders: [
          { test: /\.js$/, loader: 'babel-loader' }
        ]
      }
    },
    webpackServer: {
      noInfo: true //please don't spam the console when running in karma!
    }
  });
};

および tests.webpack.js

var context = require.context('./src', true, /-test\.js$/); //make sure you have your directory and regex test set correctly!
context.keys().forEach(context);

karma と karma-webpack がインストールされています。

何か案は ?

4

3 に答える 3

6

同様のエラーが発生しましたが、受け入れられたソリューションで参照されている投稿は機能しませんでした。代替案をお探しの場合は、以下をお読みください。


次のエラー メッセージが表示されました。

WARN [preprocess]: Can not load "webpack"!
TypeError: Object [object Object] has no method 'refreshFiles'
at Plugin.notifyKarmaAboutChanges (/Users/abhandaru/workspace/source/macaw-campaigns/node_modules/karma-webpack/index.js:108:15)
at Plugin.<anonymous> (/Users/abhandaru/workspace/source/macaw-campaigns/node_modules/karma-webpack/index.js:72:9)
at Tapable.applyPlugins (/Users/abhandaru/workspace/source/macaw-campaigns/node_modules/webpack/node_modules/tapable/lib/Tapable.js:26:37)

Githubの問題でこの解決策を見つけました:

https://github.com/webpack/karma-webpack/issues/65

my の更新された行は次のpackage.jsonとおりです。

"karma": "^0.13.3",
"karma-chrome-launcher": "^0.2.0",
"karma-jasmine": "^0.3.6",
"karma-webpack": "^1.7.0",

お役に立てれば。

于 2015-08-17T06:01:38.030 に答える
5

karma-* プロジェクトの最新バージョンで何かが変更されました。最新のものをすべてインストールしたのと同じ問題があります。ここで正確にバージョンを試してみましたが、うまくいきました。

于 2015-07-16T11:12:56.157 に答える
2

「karma」および「karma-webpack」パッケージをアップグレードする必要があります。同様の例外があり、次のバージョンにアップグレードするとこれが解決しました:

"karma": "0.13.18",
"karma-webpack": "1.7.0"
于 2016-10-12T08:29:17.077 に答える