You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Removing the transform-runtime Babel plugin from the test build means that this method is not polyfilled. We'll need to consider how to reconcile this with the Babel issue described here:
Related to this, our Travis configuration should probably be such that it aligns with the version defined in .nvmrc if this is the version we want to assign as "preferred".
Regression introduced in #399 (a71bea2)
Steps to reproduce:
npm run test-unit
Expected result:
Tests pass, especially considering we define a preferred version via
.nvmrc
.Actual result:
Tests fail with error:
Anticipated cause:
Support for the
Object.values
function was not added until Node 7.x .See also: http://node.green/#ES2017-features-Object-static-methods-Object-values
Removing the
transform-runtime
Babel plugin from the test build means that this method is not polyfilled. We'll need to consider how to reconcile this with the Babel issue described here:babel/babel#2877 (comment)
The text was updated successfully, but these errors were encountered: