Skip to content
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

Closed
cyrilgandon opened this issue Feb 29, 2016 · 7 comments
Closed

Regression with core-js 2.1.1 -> 2.1.2 #1946

cyrilgandon opened this issue Feb 29, 2016 · 7 comments

Comments

@cyrilgandon
Copy link

My automatic build runs successfully this night at 3am, but failed this morning at 7am.
I got the following error message:

Running karma task�
Fatal error: Cannot read property 'length' of undefined

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!

  • Karma version: 0.13.21

I'm not sure if this is a Karma problem or a core-js problem, still investigating..

@cyrilgandon
Copy link
Author

The Karma task take part in a scenario where a typescript build happens before.
The Karma task successfuly runs on this own. When it is the second task of a grunt multitask, the error appeared.

grunt.registerTask('tests', ['typescript', 'karma']);
grunt tests // FAILURE
grunt typescript
grunt karma // SUCCESS

@cyrilgandon
Copy link
Author

TypeError: Cannot read property 'length' of undefined
    at lib$es6$promise$$internal$$fulfill (.\node_modules\grunt-ts\node_modules\csproj2ts\node_modules\es6-promise\dist\es6-promise.js:273:31)
    at lib$es6$promise$$internal$$resolve (.\node_modules\grunt-ts\node_modules\csproj2ts\node_modules\es6-promise\dist\es6-promise.js:255:9)
    at lib$es6$promise$$internal$$invokeCallback (.\node_modules\grunt-ts\node_modules\csproj2ts\node_modules\es6-promise\dist\es6-promise.js:366:9)
    at .\node_modules\grunt-ts\node_modules\csproj2ts\node_modules\es6-promise\dist\es6-promise.js:891:13    
    at lib$es6$promise$asap$$flush (.\node_modules\grunt-ts\node_modules\csproj2ts\node_modules\es6-promise\dist\es6-promise.js:125:9)    
    at doNTCallback0 (node.js:408:9)
    at process._tickCallback (node.js:337:13)

It seems typescript/grunt-ts is effectively involved in this error

@zloirock
Copy link

I don't see in the core-js diff v2.1.1...v2.1.2 (see, for example, client/shim.js for all changes) that can break something - only minor fixes, so I don't think the problem in core-js. Awaiting results of the investigation.

@wen96
Copy link

wen96 commented Feb 29, 2016

Not sure how core-js works (dependency of dependency of...) but this commit:
zloirock/core-js@3b8292d#diff-ee864bf9a84ab105426dbe4fbbad2a69 is creating the issue, if you remove the .f from line 30 it works again.

If someone with more idea about NodeJS could through some light on it.

@cyrilgandon
Copy link
Author

Not Karma related

@zloirock
Copy link

It's a bug in es6-promise. In feature detection, core-js detected @@species constructor pattern support in Promise#then. es6-promise not supports it and throws an error. Feature detection wrapped in try / catch, but an error throws async.

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');
}

@zloirock
Copy link

In core-js 2.1.3 added a fallback for this es6-promise bug.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

4 participants