错误:找不到模块“jasmine-core”

2024-05-15

我安装了以下内容进行测试:

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

运行后karma start我收到以下错误:

进行搜索,这是具有相同问题的第一个问题:业力启动找不到模块“jasmine-core” https://stackoverflow.com/questions/32846206/karma-start-cannot-find-module-jasmine-core

不过我已经尝试了两个答案,安装了jasmine-core全球范围内,我已经这样做了npm install jasmine-core --save-dev :(


My 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>

My 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
  })
}

申报时karma in package.json,然后将其作为本地依赖项安装在node_modules您的项目的目录。但跑步karma start从控制台执行您的全局安装karma。因此,Karma 有两个版本(本地版本和全局版本),并且都依赖于jasmine-core,需要安装。

当得到Cannot find module 'jasmine-core' on karma start,那么全局安装的 Karma 就会错过“jasmine-core”。因此,请确保您也已在全球范围内安装了该软件。最好是运行以下命令:

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

之后你应该能够运行karma start在一个目录上有一个karma.conf.js file.

您还可以使用本地安装的 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
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系:hwhale#tublm.com(使用前将#替换为@)

错误:找不到模块“jasmine-core” 的相关文章

随机推荐