Error: Cannot find module 'jasmine-core'

Error: Cannot find module 'jasmine-core'

我安装了以下用于测试:

"devDependencies": {
    "jasmine-core": "^2.4.1",
    "karma": "^0.13.22",
    "karma-jasmine": "^0.3.7",
    "karma-phantomjs-launcher": "^1.0.0"
}

在 运行 karma start 之后我得到以下错误:

正在搜索这是具有相同问题的第一个问题:karma start Cannot find module 'jasmine-core'

但是我已经尝试了这两个答案,在全球范围内安装了 jasmine-core 并且我已经安装了 npm install jasmine-core --save-dev :(


我的test/index.html

<!DOCTYPE html>
<html lang="en">
<head>
    <title>Jasmine Spec Runner</title>
    <link href="testing.css" rel="stylesheet">
    <script src="../app/assets/js/libs/vendors.min.js"></script>
    <script src="../app/assets/js/bundle.js"></script>
</head>

<body>

    <div>
        <header>
            <h1>Jasmine tests for Dashboard</h1>
        </header>
    </div>

</body>
</html>

我的karma.conf.js

// Karma configuration
// Generated on Mon Mar 14 2016 11:56:04 GMT-0500 (CDT)

module.exports = function(config) {
  config.set({

    // base path that will be used to resolve all patterns (eg. files, exclude)
    basePath: '.',


    // frameworks to use
    // available frameworks: https://npmjs.org/browse/keyword/karma-adapter
    frameworks: ['jasmine'],


    // list of files / patterns to load in the browser
    files: [
      'app/assets/js/bundle.js',
      'test/**/*.js'
    ],


    // list of files to exclude
    exclude: [
    ],


    // preprocess matching files before serving them to the browser
    // available preprocessors: https://npmjs.org/browse/keyword/karma-preprocessor
    preprocessors: {
    },


    // test results reporter to use
    // possible values: 'dots', 'progress'
    // available reporters: https://npmjs.org/browse/keyword/karma-reporter
    reporters: ['progress'],


    // web server port
    port: 9876,


    // enable / disable colors in the output (reporters and logs)
    colors: true,


    // level of logging
    // possible values: config.LOG_DISABLE || config.LOG_ERROR || config.LOG_WARN || config.LOG_INFO || config.LOG_DEBUG
    logLevel: config.LOG_INFO,


    // enable / disable watching file and executing tests whenever any file changes
    autoWatch: false,


    // start these browsers
    // available browser launchers: https://npmjs.org/browse/keyword/karma-launcher
    browsers: ['PhantomJS'],


    // Continuous Integration mode
    // if true, Karma captures browsers, runs the tests and exits
    singleRun: true,

    // Concurrency level
    // how many browser should be started simultaneous
    concurrency: Infinity
  })
}

只是猜测,但请尝试清理 npm 缓存,删除 node_modules 并从头开始重新安装所有内容:

$ rm -rf node_modules
$ npm cache clean
$ npm i

$ sudo npm uninstall -g jasmine-core 
$ sudo npm cache clean -f
$ sudo npm i -g jasmine-core 

package.json 中声明 karma 时,它会作为本地依赖项安装在项目的 node_modules 目录中。但是 运行ning karma start 从控制台执行全局安装的 karma。所以有两个版本的 Karma(本地和全局)并且都依赖于 jasmine-core,需要安装它。

karma start 上获取 Cannot find module 'jasmine-core' 时,全局安装的 Karma 未命中 "jasmine-core"。因此,请确保您在全球范围内也安装了它。最好是 运行 以下命令:

npm install -g karma
npm install -g jasmine-core
npm install -g karma-jasmine

之后,您应该能够 运行 karma start 在具有 karma.conf.js 文件的目录中。

您也可以使用本地安装的 Karma。您需要做的就是这样安装它:

npm install --save-dev karma 
npm install --save-dev jasmine-core
npm install --save-dev karma-jasmine

如果你这样做了,那么确保你也从它在 node_modules 中的路径执行它:

./node_modules/karma/bin/karma start

如果您在本地目录中的命令行中启动 karma,您应该全局安装 karma-cli 而不是 karma

Reference

只需导航到节点模块中的 karma-jasmine 目录:

cd node_modules/karma-jasmine

和运行npm install。 jasmine-core 在 package.json 文件中的 devDependecies 中。导航回您的根目录并重新 运行

karma start karma-conf.js

这应该可以消除该错误。