karma plugin dependencies not being found

后端 未结 5 1541
梦毁少年i
梦毁少年i 2020-12-30 19:52

When I run karma start I get the following issues

C:\\devl\\JS\\myProject>karma start
06 09 2015 11:30:19.133:WARN [plugin]: Cannot find plug         


        
5条回答
  •  生来不讨喜
    2020-12-30 20:17

    My answer might be a very rookie one, but did you add those plugins in the plugins array in the karma config file?

    For example:

        plugins: [
            'karma-jasmine-html-reporter',
            'karma-spec-reporter',
            'karma-chrome-launcher',
            'karma-jasmine',
            'karma-coverage',
            'karma-phantomjs-launcher'
        ],
    

    Mine got resolved after I added the plugins to this array.

提交回复
热议问题