Warning: file_get_contents(/data/phpspider/zhask/data//catemap/7/sql-server/25.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Debugging 调试业力摩卡;IntelliJ内的网页包_Debugging_Intellij Idea_Karma Runner_Karma Mocha_Karma Webpack - Fatal编程技术网

Debugging 调试业力摩卡;IntelliJ内的网页包

Debugging 调试业力摩卡;IntelliJ内的网页包,debugging,intellij-idea,karma-runner,karma-mocha,karma-webpack,Debugging,Intellij Idea,Karma Runner,Karma Mocha,Karma Webpack,我无法使用karma和webpack调试mocha单元测试。 我已经安装了Karma插件和chrome扩展。但是当我调试IDE时,它会忽略任何断点 单元测试的示例: var assert = require('chai').assert; describe('Test', function () { it('always true', function () { assert.equal(1 === 1, true); }); }); 你有没有设法让它工作起来

我无法使用karma和webpack调试mocha单元测试。 我已经安装了Karma插件和chrome扩展。但是当我调试IDE时,它会忽略任何断点

单元测试的示例:

var assert = require('chai').assert;

describe('Test', function () {
    it('always true', function () {
        assert.equal(1 === 1, true);
    });
});

你有没有设法让它工作起来?