编程语言
首页 > 编程语言> > javascript – Karma没有在karma-webpack中运行具有“import”语句的测试

javascript – Karma没有在karma-webpack中运行具有“import”语句的测试

作者:互联网

我有一些测试文件,我想对我的应用程序运行测试.

我试图在我的测试中使用karma,karma-webpack,karma-babel-preprocessor,karma-chrome-launcher和jasmine.我的应用程序取决于很多东西,包括骨干,木偶等.我的应用程序是使用webpack构建的,我试图使用webpack将我的文件捆绑在一起进行测试. (我最初想看看我是否可以跳过这一步,即只是导入一个要测试的文件,但似乎这是不可能的.)

我的测试脚本看起来像

package.json(脚本部分)

"test": "./node_modules/karma/bin/karma start",

其余的文件:

karma.conf.js

var webpackConfig = require('./config/webpack/webpack.test.conf.js');

module.exports = function(config) {
  config.set({
    basePath: '',
    frameworks: ['jasmine'],
    files: [
      { pattern: 'test/**/*.spec.js', watched: true },
      { pattern: 'test/*.spec.js', watched: true }
    ],
    exclude: [
    ],
    preprocessors: {
        'test/**/*.spec.js': ['webpack'],
        'test/*.spec.js': ['webpack']
    },
    webpack: webpackConfig,
    webpackMiddleware: {
        stats: 'errors-only'
    },
    reporters: ['progress'],
    port: 9876,
    colors: true,    
    logLevel: config.LOG_INFO,           
    autoWatch: true,       
    browsers: ['Chrome'],        
    singleRun: false,
    concurrency: Infinity
  })
}

test / test.spec.js可以看到这个文件

describe("A suite", function () {
    it("contains spec with an expectation", function () {
        expect(true).toBe(true);
    });
});
describe("Another suite", function () {
    it("contains another spec with an expectation", function () {
        expect(true).toBe(false);
    });
});

test / models / devicegroup.spec.js看不到此文件

import backbone from 'backbone';

describe("backbone", function () {
    it("containsasdfasdfasdfasdfspec with an expectation", function () 
  {
        expect(true).toBe(false);
    });
});

我的文件夹结构是:

- karma.conf.js
- test/
- - test.spec.js
- - models/
- - - devicegroup.spec.js
- public/
- - js/
- - - app.js

当我的文件顶部没有import语句时,karma将按预期运行并传递/失败.将import语句放在顶部会导致业务忽略该文件.没有错误被抛出.

我如何让karma / karma-webpack运行我的测试,这些测试具有import语句/什么是将模块导入我的测试的业力安全方法?

当test / models / devicegroup.spec.js没有import语句时:

// import backbone from 'backbone';

describe("backbone", function () {
    it("contains with an expectation", function () {
        expect(true).toBe(false);
    });
});

终端输出是:(注意少运行一次测试)

Screenshot of terminal output karma successfully running test of file without import statement

当test / models / devicegroup.spec.js有一个import语句时:

import backbone from 'backbone';

describe("backbone", function () {
    it("contains with an expectation", function () {
        expect(true).toBe(false);
    });
});

终端输出是:

Screenshot of terminal output of karma when not able to see files with import statements

我看到Karma打开的浏览器没有错误.

编辑:

我已经尝试将我的源文件添加到我的karma.conf.js文件中的文件和预处理器属性中,如this repo example所示.除了大量增加的测试时间之外,行为没有任何变化.

karma.conf.js

files: [
  { pattern: 'public/js/**/*.js', watched: true},
  { pattern: 'test/**/*.spec.js', watched: true },
  // each file acts as entry point for the webpack configuration
],

preprocessors: {
    // add webpack as preprocessor
    'public/js/**/*.js': ['webpack'],
    'test/**/*.spec.js': ['webpack'],
},

EDIT2:
为了实验(and based off this person’s struggles),我在每种可能的组合中尝试了上面的karma.conf.js – 只测试文件和预处理器中的文件,只测试源文件,测试文件在一个但不是另一个,源文件在一个但是不是其他,没有,两者兼而有之.没有好的结果,虽然偶尔会出现新的错误.

解决方法:

稍晚,但我遇到了同样的问题,并且正在搜索几个小时,为什么我的导入会阻止测试套件被执行. karma-webpack-4.0.0-rc.2通过提供错误消息带来了启示!!

我的情况是一些未找到的模块,angular-mock,jquery,angular等等.

怎么修

将模块放入karma.config中的files数组中,如:

files = [
  "node_modules/jquery/dist/jquery.js",
  "node_modules/angular/angular.js",
  "node_modules/angular-mocks/angular-mocks.js",
  { pattern: "test/**/*.ts", watched: false }

我希望这可以帮助别人.

编辑

我当前版本的测试相关包:

"@types/jasmine": "^2.8.8",
"jasmine": "^3.2.0",
"jasmine-core": "^3.2.1",
"jasmine-reporters": "2.3.2",
"jasmine-ts": "^0.2.1",
"karma": "3.0.0",
"karma-chrome-launcher": "2.2.0",
"karma-jasmine": "1.1.2",
"karma-junit-reporter": "1.2.0",
"karma-phantomjs-launcher": "1.0.4",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "0.0.32",
"karma-webpack": "^4.0.0-rc.2",
"typescript": "3.0.3",
"webpack": "4.17.2",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "3.1.8"

标签:javascript,karma-jasmine,webpack,karma-runner,karma-webpack
来源: https://codeday.me/bug/20190910/1799062.html