-
Notifications
You must be signed in to change notification settings - Fork 1.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Regression with core-js 2.1.1 -> 2.1.2 #1946
Comments
The Karma task take part in a scenario where a typescript build happens before.
|
It seems typescript/grunt-ts is effectively involved in this error |
I don't see in the |
Not sure how If someone with more idea about NodeJS could through some light on it. |
Not Karma related |
It's a bug in Reproducible example: require('es6-promise');
var p = Promise.resolve();
p.constructor = function(it){ it(function(){}, function(){})};
p.constructor[Symbol.species] = function(it){ it(function(){}, function(){})};
try {
var f = p.then(function(){});
console.log('works: ', f instanceof p.constructor[Symbol.species]);
} catch(e){
console.log('caught error');
} |
In |
My automatic build runs successfully this night at 3am, but failed this morning at 7am.
I got the following error message:
The difference between the two builds is the release of core-js 2.1.2 during this time span.
I tried to downgrade manually the dependency of Karma to use core-js 2.1.1, and the error is gone!
I'm not sure if this is a Karma problem or a core-js problem, still investigating..
The text was updated successfully, but these errors were encountered: