node.js - 错误 : Cannot find module 'jasmine-core'

标签 node.js testing jasmine karma-runner karma-jasmine

我安装了以下用于测试:

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

运行 karma start 后出现以下错误:

enter image description here

进行搜索这是具有相同问题的第一个问题: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
  })
}

最佳答案

当在 package.json 中声明 karma 时,它会作为本地依赖项安装在项目的 node_modules 目录中。但是从控制台运行 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.conf.js 文件的目录中运行 karma start

您还可以使用本地安装的 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

关于node.js - 错误 : Cannot find module 'jasmine-core' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35993875/

相关文章:

android - 使用 algolia 在 firestore 中进行全文搜索

javascript - 在 nodejs express 应用程序中记录所有远程调用以进行测试

angularjs - 如何使用 Jasmine 为 Restangular 编写单元测试?

selenium - 如何加快 Protractor 的输入速度或设置更长的超时时间

javascript - 在Protractor JS中使用 "invalid selector"时如何解决关于 "if statement"的错误?

javascript - Jasmine Node 说 "0 tests"当有*有*测试

javascript - 使用 puppeteer browserWSEndpoint 上传文件

javascript - 局部变量在 javascript 的回调函数中变得未定义

javascript - Socket.io 在断开连接时重新连接?

ruby-on-rails - 如何模拟与 capybara 共享地理定位?