TypeError: Cannot read property 'namespacing' of undefined
See original GitHub issueI’m trying to use this in an addon, and it seems to be upset that there is not a config. Shouldn’t the defaults apply, if I supply no config?
It throws: TypeError: Cannot read property 'namespacing' of undefined
I tried adding the config in ember-cli-build.js
and tests/dummy/config/environment.js
and neither seemed to help.
Issue Analytics
- State:
- Created 7 years ago
- Comments:15 (9 by maintainers)
Top Results From Across the Web
Cannot read property 'namespace' of undefined #416 - GitHub
TypeError : Cannot read property 'namespace' of undefined from eslint-plugin-import/lib/rules/namespace.js Getting this error and not exactly ...
Read more >Mongoose TypeError 'cannot read namespace' of undefined in ...
My connection configuration located in app.js looks like this (it works when running the application using NPM without any errors): const dbUser ...
Read more >Uncaught TypeError: Cannot read properties of undefined ...
Description of problem: For a couple years my code has been fine, something in the underlying datatables packages seems to have changed and...
Read more >Uncaught TypeError: Cannot read property 'delegate' of null
I get the error Uncaught TypeError: Cannot read property 'delegate' of null in the console. This happens with the couple of custom portlets...
Read more >T168621 CX1: "TypeError: Cannot read property 'indexOf' of ...
This seems to only happen when $wgUsejQueryThree = true; (which is now the default in master). Very simplified example of the code: promise...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@rwwagner90 so in your
index.js
file, when you where calling super on the included method, you where just doingthis._super.included(app);
. It looks like you are needing to dothis._super.included.apply(this, arguments);
.@webark ah okay. I’ll create an issue for that. Thanks!