File tree Expand file tree Collapse file tree 3 files changed +6
-0
lines changed Expand file tree Collapse file tree 3 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ script:
1212 - ' npm test'
1313 # Run browser tests on one node version.
1414 - ' if [ "${TRAVIS_PULL_REQUEST}" = "false" ] && [ "${TRAVIS_NODE_VERSION}" = "stable" ]; then npm run test:browsers; fi'
15+ - ' if [ "${TRAVIS_PULL_REQUEST}" = "false" ] && [ "${TRAVIS_NODE_VERSION}" = "stable" ]; then npm run test:browsers:polyfills; fi'
1516addons :
1617 sauce_connect : true
1718 hosts :
Original file line number Diff line number Diff line change 1717 },
1818 "devDependencies" : {
1919 "airtap" : " ~1.0.0" ,
20+ "core-js" : " ^3.6.5" ,
2021 "is-async-supported" : " ~1.2.0" ,
2122 "object.assign" : " ~4.1.0" ,
2223 "object.entries" : " ^1.1.0" ,
4041 "scripts" : {
4142 "test" : " node test/node/index.js" ,
4243 "test:browsers" : " airtap test/browser/index.js" ,
44+ "test:browsers:with-polyfills" : " airtap test/browser/with-polyfills.js" ,
45+ "test:browsers:with-polyfills:local" : " npm run test:browsers:with-polyfills -- --local" ,
4346 "test:browsers:local" : " npm run test:browsers -- --local"
4447 }
4548}
Original file line number Diff line number Diff line change 1+ require ( 'core-js' ) ;
2+ require ( './index.js' ) ;
You can’t perform that action at this time.
0 commit comments