Karma, PhantomJS and es6 Promises

前端 未结 5 1181
野的像风
野的像风 2021-02-05 01:06

I am writing a JavaScript library that uses the new es6 promises. I can test the library in Firefox because promises are defined. However, when I try to test my code with Karma

5条回答
  •  日久生厌
    2021-02-05 01:15

    You can pull in the Babel polyfill by simply installing Babel Polyfill:

    npm install --save-dev babel-polyfill
    

    and then include the polyfill file before your source and test files within the files section of your karma.conf.js:

    files: [
      'node_modules/babel-polyfill/dist/polyfill.js',
      'index.js',   //could be /src/**/*.js
      'index.spec.js' //could be /test/**/*.spec.js
    ],
    

    Unless you know that all your target browsers support Promises, you probably want to apply this polyfill to your released build too.

    If you're feeling really adventurous you can use Browserify to pull files in to make your testing more modular, and then use Babelify to transpile ES6 to ES5. I've created a sample project with these and a working test involving a Promise (running on PhantomJS2) for reference.

提交回复
热议问题