我正在开始一个项目NG6-Kit-starter。
我正在使用WebStorm。
我希望能够使用WebStorm调试我的单元测试,所以我遵循了这个tutorial。
我可以从WebStorm进行单元测试,但是我不能设置断点,它永远不会在断点处停留,我也不知道为什么。
我怀疑它必须对我在我的业力配置文件中使用预处理器的事实做点什么。
preprocessors: { 'spec.bundle.js': ['webpack', 'sourcemap'] },
见下面我的完整karma.config.js
module.exports = function (config) {
config.set({
// base path used to resolve all patterns
basePath: '',
// frameworks to use
// available frameworks: https://npmjs.org/browse/keyword/karma-adapter
frameworks: ['mocha', 'sinon-chai'],
// list of files/patterns to load in the browser
files: [{ pattern: 'spec.bundle.js', watched: false }],
// files to exclude
exclude: [],
plugins: [
require("karma-sinon-chai"),
require("karma-chrome-launcher"),
require("karma-mocha"),
require("karma-mocha-reporter"),
require("karma-sourcemap-loader"),
require("karma-webpack")
],
// preprocess matching files before serving them to the browser
// available preprocessors: https://npmjs.org/browse/keyword/karma-preprocessor
preprocessors: { 'spec.bundle.js': ['webpack', 'sourcemap'] },
webpack: {
//devtool: 'inline-source-map',
devtool: 'source-map',
module: {
loaders: [
{ test: /\.js/, exclude: [/app\/lib/, /node_modules/], loader: 'babel' },
{ test: /\.html$/, loader: 'raw' },
{ test: /\.(scss|sass)$/, loader: 'style!css!sass' },
{ test: /\.css$/, loader: 'style!css' },
{ test: /\.svg/, loader: 'svg-url-loader' },
{ test: /\.json$/, loader: 'json-loader' }
]
}
},
webpackServer: {
noInfo: true // prevent console spamming when running in Karma!
},
// available reporters: https://npmjs.org/browse/keyword/karma-reporter
reporters: ['mocha'],
// web server port
port: 9876,
// enable colors in the output
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_DEBUG,
// toggle whether to watch files and rerun tests upon incurring changes
autoWatch: false,
// start these browsers
// available browser launchers: https://npmjs.org/browse/keyword/karma-launcher
browsers: ['Chrome'],
// if true, Karma runs tests once and exits
singleRun: true
});
};
我的spec.bundle.js文件:
import angular from 'angular';
import mocks from 'angular-mocks';
let context = require.context('./client/app', true, /\.spec\.js/);
context.keys().forEach(context);
是否有人知道如何使用WebStorm工作以便能够在单元测试中放置断点?
答案 0 :(得分:2)
刚试过2017.1 EAP - karma调试开箱即用:
karma.config.js
client/app/common/hero/hero.spec.js
中的断点被击中。在 2016.3.2 中,我必须刷新浏览器页面(启用了JetBrains IDE扩展的页面)才能获得断点。
答案 1 :(得分:0)
感谢您的回复,它帮助我找到了我做错的事。所以我像你一样进行了测试,它的工作方式正如你所说的那样(你必须在2016年的Webstorm上刷新,并且开箱即用EAP版本)。
所以我通过提交(我做了4次提交)来查明我做错了什么: 我是webpack的新手,当我尝试一些东西时,我尝试在karma.conf.js中更改此设置:
更换:
webpack: {
devtool: 'inline-source-map',
人:
webpack: {
devtool: 'source-map',
更改它解决了我的问题。单元测试现在在断点处停止
我做了一些研究,以便更好地了解这个设置是什么,如果您对此感兴趣,请查看此问题:Why inline source maps?