我有代码在'.newWave.html'创建一个新窗口。使用HtmlWebpackPlugin
提供此内容new HtmlWebpackPlugin({
template: './src/newWave.html',
filename: 'newWave.html',
inject: 'body',
chunks: ['newWave'],
hash: false
}),
我如何做与Karma类似的事情,因为我正在测试相同的代码?
运行业力1.如何编辑我的karma.conf 业力会在本地提供newWave.html吗?
我试过搞乱文件和代理,但却无法得到它。
答案 0 :(得分:1)
想通了。
files: [
'./test/**/*.ts',
'./test/**/*.tsx',
{pattern: './src/newWave.html', watched: false, served: true, included: true},
],
proxies: {
'/newWave.html': '/base/src/newWave.html'
},