Results 15 comments of marlou

A mock implementation depends on what you want to test in your unit test. For me, it is a complete non-sense (and very dangerous) to factorize mock outside a unit...

`ngInclude` should be avoided. Use a component instead. I agree with you about templateUrl and constants but you cannot use angular.module.constant because you cannot declare the component factory method when...

If your component is a presentational component (like a dumb list), you should not put any logic in it and passing the data directly via attr is the good way....

Same naming for injector and function name also help a lot when you want to rename something.

> When to use TLDR : **Never**. It is a highway for spaghetti source code. Never ever use them. This is the best practice regardings events. There is nothing you...

@clarkmalmgren I don't see what you are testing in your controller. There is no logic in it. For me, you are just testing that `vm.users = users;`, so the answer...

Search for `createInjector(modulesToLoad, strictDi)` function in the angular source code. When the injector is created, angular build a dependency tree with all modules. Then it prepare config & run execution...

Any news about that missing feature ?

Hello, `listFiles()` function list `.tmp/` directory for `.js` files and not `src/`. So your preprocessors config should be this : ```javascript preprocessors: { [conf.path.src('**/*.html')]: [ 'ng-html2js' ], '.tmp/app/js/**/*.js': ['coverage'] }...

> Why dont you have fullstack generator yet. None app have only frontend architecture. They should have an option to generate a backend project separated from the frontend, but they...