mic*_*dam 2 typescript karma-runner webpack angular
我想要的是当我用Karma运行单元测试时能够将我的打字稿文件加载到浏览器的调试器中.如果我删除karma-typescript,测试会运行,但我只能使用已编译的javascript进行调试.使用karma-typescript,我得到上述错误.在使用karma时,我需要做什么来调试我的打字稿文件?
这是我用于测试的业力配置.
const conf = require('./gulp.conf');
module.exports = function (config) {
const configuration = {
basePath: '../',
singleRun: false,
autoWatch: true,
logLevel: 'INFO',
junitReporter: {
outputDir: 'test-reports'
},
browsers: [
'Chrome'
],
frameworks: [
'jasmine',
'karma-typescript'
],
files: [
{ pattern: "src/**/*.ts" },
conf.path.src('index.spec.js')
],
preprocessors: {
[conf.path.src('index.spec.js')]: [
'webpack'
],
"**/*.ts": ['karma-typescript']
},
reporters: ['progress', 'coverage', 'karma-typescript'],
coverageReporter: {
type: 'html',
dir: 'coverage/'
},
webpack: require('./webpack-test.conf'),
webpackMiddleware: {
noInfo: true
},
plugins: [
require('karma-jasmine'),
require('karma-junit-reporter'),
require('karma-coverage'),
require('karma-chrome-launcher'),
require('karma-webpack'),
require('karma-typescript')
]
};
config.set(configuration);
};
Run Code Online (Sandbox Code Playgroud)
这是我的webpack conf用于测试.
const webpack = require('webpack');
const conf = require('./gulp.conf');
module.exports = {
module: {
loaders: [
{
test: /.json$/,
loaders: [
'json-loader'
]
},
{
test: /.ts$/,
exclude: /node_modules/,
loader: 'tslint-loader',
enforce: 'pre'
},
{
test: /\.ts$/,
exclude: /node_modules/,
loaders: [
'ts-loader'
]
},
{
test: /.html$/,
loaders: [
'html-loader'
]
}
]
},
plugins: [
new webpack.ContextReplacementPlugin(
/angular(\\|\/)core(\\|\/)(esm(\\|\/)src|src)(\\|\/)linker/,
conf.paths.src
),
new webpack.LoaderOptionsPlugin({
options: {
resolve: {},
ts: {
configFileName: 'tsconfig.json'
},
tslint: {
configuration: require('../tslint.json')
}
},
debug: true
}),
new webpack.SourceMapDevToolPlugin({
filename: null,
test: /\.(ts|js)($|\?)/i
})
],
devtool: 'source-map',
resolve: {
extensions: [
'.webpack.js',
'.web.js',
'.js',
'.ts'
]
}
};
Run Code Online (Sandbox Code Playgroud)
这是我的webpack conf,用于运行应用程序.
const webpack = require('webpack');
const conf = require('./gulp.conf');
const path = require('path');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const FailPlugin = require('webpack-fail-plugin');
const autoprefixer = require('autoprefixer');
const fileLoader = require('file-loader');
module.exports = {
module: {
loaders: [
{
test: /.json$/,
loaders: [
'json-loader'
]
},
{
test: /.ts$/,
exclude: /node_modules/,
loader: 'tslint-loader',
enforce: 'pre'
},
{
test: /\.(css|scss)$/,
loaders: [
'style-loader',
'css-loader',
'sass-loader',
'postcss-loader'
]
},
{
test: /\.ts$/,
exclude: /node_modules/,
loaders: [
'ts-loader'
]
},
{
test: /.html$/,
loaders: [
'html-loader'
]
},
{
test: /\.(jpe?g|png|gif|svg)$/i,
loader: "file-loader?name=/public/images/[name].[ext]"
}
]
},
plugins: [
new webpack.optimize.OccurrenceOrderPlugin(),
new webpack.NoErrorsPlugin(),
FailPlugin,
new HtmlWebpackPlugin({
template: conf.path.src('index.html')
}),
new webpack.ContextReplacementPlugin(
/angular(\\|\/)core(\\|\/)(esm(\\|\/)src|src)(\\|\/)linker/,
conf.paths.src
),
new webpack.LoaderOptionsPlugin({
options: {
postcss: () => [autoprefixer],
resolve: {},
ts: {
configFileName: 'tsconfig.json'
},
tslint: {
configuration: require('../tslint.json')
}
},
debug: true
})
],
devtool: 'source-map',
output: {
path: path.join(process.cwd(), conf.paths.tmp),
filename: 'index.js'
},
resolve: {
extensions: [
'.webpack.js',
'.web.js',
'.js',
'.ts'
]
},
entry: `./${conf.path.src('index')}`
};
Run Code Online (Sandbox Code Playgroud)
请告诉我您想要的其他信息或代码.
在我的情况下(从1.0.0-beta.26迁移到@ angular/cli 1.0.0-rc.0)我通过删除修复它
import './polyfills.ts';
Run Code Online (Sandbox Code Playgroud)
来自src/test.ts,因为它现在似乎是由基于in 的ng添加的."polyfills": "polyfills.ts"angular-cli.json
以下是beta-> rc 升级指南,列出了所需的其他更改.
| 归档时间: |
|
| 查看次数: |
1770 次 |
| 最近记录: |