Skip to content Skip to sidebar Skip to footer

Typeerror: Undefined Is Not A Constructor

I'm very new to Angular and I'm trying to figure much of this out still. I'm writing some tests using Angular 1.5.8 which I generated from the Yeoman Generator. Specifically, I'm

Solution 1:

undefined is not a constructor

is an error message PhantomJS displays when you tried to call a function that is not defined. It depends on the version of ECMAScript which your PhantomJS supports. So as you said it works fine in Chrome, because this browser supports the function you are using in test. In order to fix your problem and still be able to use PhantomJS you can replace the "unknown to PhantomJS" function with some alternative function.

Solution 2:

I was getting TypeError: undefined is not a constructor error using the includes() method. The includes() and endsWith() methods are new in ECMAScript 2015, and are not supported in Internet Explorer, and evidently not by PhantomJS.

There is a chance your end user may be using Internet Explorer. In which case, you may want to use the fully supported indexOf() method instead of includes() or endsWith()

For example, in my case, everything worked great in chrome, but my tests were failing on the line:

if (item.name.includes('contents'))

I changed to using the indexOf() method instead:

if (item.name.indexOf('contents') !== -1)

And then I was no longer getting the error

TypeError: undefined is not a constructor

Solution 3:

I debated whether or not to post this as an answer or just an edit to my question, but I guess it's my answer (for now):

It seems the problem is related to PhantomJS. As soon as I changed the engine to Chrome in the karma.conf.js file, those tests passed.

I still don't know what that error message is supposed to mean and why it wasn't working with PhantomJS, but at least I'm now able to continue.

Here are the modifications to my karma.conf.js (in case anyone is curious):

browsers: [
 //'PhantomJS',
 'Chrome'
],

// Which plugins to enable
plugins: [
 'karma-chrome-launcher',
 //'karma-phantomjs-launcher',
 'karma-jasmine'
],

Btw - I did notice that endsWith is new to ECMAScript6 (I was thinking it was older), but WebStorm shows that it's referencing a helper function in angular-ui-grid. I spent quite a while messing with the files array in the karma.conf.js file in an attempt to see if the ui-grid dependency was loading too late or something. In every test, it worked fine in Chrome but not PhantomJS. I still have no idea why.

Solution 4:

In My Case: Cyclic Dependencies Causing:

PhantomJS 2.1.1 (Windows 8 0.0.0) ERROR TypeError: undefined is not a constructor (evaluating '(0, _actions.prefix)('SET_USER_INPUT_PHONE_NUMBER')') at undefined:12

I got the same error after I added imports in my javascript production code (ES6 syntax compiled with babel/webpack). The changes were fine when a production build of the application was loaded in chrome but running the tests with phantomJS produced the error. In my case the added imports created cyclic dependencies.

I'm dropping this here for future reference (I stumbled upon the same problem a few weeks ago and don't want to scratch my head again in another couple of weeks) and for others that google the same error.

Solution 5:

I faced similar error with PhantomJS:

For me the error was the way in which I was creating a spy object for my service.

Error on line in code file new Service.getData(param1, param2)

Fix in test file: jasmine.createSpyObj('Service',['getData'])

What is was missing was adding ['getData] while creating spyObj

Post a Comment for "Typeerror: Undefined Is Not A Constructor"