巴贝尔&业力与webpack无法正常工作

时间:2015-07-14 16:30:18

标签: karma-runner webpack babeljs

我正在使用带有webpack的babel,并使用karma和jasmine进行测试。 为了使用Set()(需要填充),我添加了:

loader: 'babel-loader?optional[]=runtime'

到配置。

这项工作非常适合应用程序本身,但测试无效,抛出:

TypeError: 'undefined' is not an object (evaluating '_core.Object')

1 个答案:

答案 0 :(得分:1)

好的,我自己解决了:

  1. 删除?optional[]=runtime'

  2. 添加到配置:

  3. `

    files: [
                'node_modules/babel-core/browser-polyfill.js',
          ... (rest of the needed files) 
        ],