业力 - 如何在URL上提供文件?

时间:2017-01-30 23:09:02

标签: karma-runner karma-mocha karma-coverage

我有代码在'.newWave.html'创建一个新窗口。使用HtmlWebpackPlugin

提供此内容
new HtmlWebpackPlugin({
  template: './src/newWave.html',
  filename: 'newWave.html',
  inject: 'body',
  chunks: ['newWave'],
  hash: false
}),

我如何做与Karma类似的事情,因为我正在测试相同的代码?

我在http://localhost:9876/

运行业力

1.如何编辑我的karma.conf 业力会在本地提供newWave.html吗?

  1. 如何编辑我的karma.conf,以便当我转到localhost:9876 / newWave.html时,它完全指向另一个URL,例如。 本地主机:8888 / newWave.html
  2. 我试过搞乱文件和代理,但却无法得到它。

1 个答案:

答案 0 :(得分:1)

想通了。

files: [
  './test/**/*.ts', 
  './test/**/*.tsx', 
  {pattern: './src/newWave.html', watched: false, served: true, included: true},
],
proxies: {
  '/newWave.html': '/base/src/newWave.html'
},