I thought Angular testing was a mess until I got to this video. Thank you for breaking it down so that it makes sense.
@James-ld3zs7 жыл бұрын
Is what you said at 14:10 correct? I thought change detection was to sync the components view with the values in the component, so that constructor would already have been run when you created the instance of the component, it just hadn't been updated in the view yet.
@rohanpatnaik73484 жыл бұрын
Can you add a link to the code snippet please. Thanks in advance.
@sutirthamarjit6 жыл бұрын
Excellent tutorial! Really helpful to understand the jasmine in Angular environment. Explanation of fixture is good.
@paulhalliday6 жыл бұрын
I'm glad to hear the video helped Sutirtha!
@nmrkmsis20007 жыл бұрын
Excellent introduction for Angular testing. Please keep up the good work.
@paulhalliday7 жыл бұрын
Thank you very much Murali!
@johnmckay19615 жыл бұрын
Nice video. I'm a bit ashamed to say that I have been working with Angular for years, and my testing knowledge regarding it is pretty dire, I'll check out your course!
@salmi_azrinparentsonly8633 жыл бұрын
I browsed 10+ videos for angular testing, until I finally find one with good english!
@abdullahalnoman20484 жыл бұрын
Excellent introduction of angular testing. Please keep it up.
@lucioargento30677 жыл бұрын
Great video on testing, but any chance you can do a video on an angular 4 test setup for lazy loadable pages?
@CMDOOJ4 жыл бұрын
This is great. Do you have more real world unit test examples that you could teach us?
@AlessioDelmonti7 жыл бұрын
Does your course covers unit and e2e testing?
@deepakahuja9557 жыл бұрын
Really Nice to be familiar with few new terms in angular testing for beginners.
@amal122333 жыл бұрын
Can you please share the code base for the same
@Stamp1135 жыл бұрын
Hello. Which font do you use?
@davidtheprogrammer7 жыл бұрын
What playlist is this? I can't find this video in the Angular 4 One. I really want to see the rest of the series
@paulhalliday7 жыл бұрын
Hey, This doesn't have any more parts here on KZbin, but I'll be going through extensive testing in my upcoming Angular course. Available for pre-order: paulhalliday.io/p/angular-from-beginner-to-advanced
@ukalyan15 жыл бұрын
Hi Paul, Thanks for the video. When i was using fixture.detectchanges() in it method its showing the error Error: ViewDestroyedError: Attempt to use a destroyed view: detectChanges it('Counter value should be Number increment by 1', () => { const initialValue = component.counter; component.IncrementCounter(); fixture.detectChanges(); const finalvalue = component.counter; expect(finalvalue).toBeGreaterThan(initialValue); }); Please let me know if i am missing anything. Thanks
@priteshkumar21085 жыл бұрын
nice tutorial...really helped me through my new assignment
@paulhalliday5 жыл бұрын
Glad I could help!
@amithakar26824 жыл бұрын
clear all doubts related to the unit testing
@vaidyanathanas72696 жыл бұрын
In ionic 3. I am getting error like 'failed to load html file' from templateURL. If I use template instead of templateURL testing works. Please help to solve this
@munapadhi87236 жыл бұрын
wow its great teaching experience. Hey paul please upload more video in angular testing.
@munapadhi87236 жыл бұрын
wow excellent video paul can have more video please for angular testing
@timele_sstreasure7 жыл бұрын
very useful for beginners. Thanks a lot Paul.
@mms90766 жыл бұрын
Excellent spring board into the angular.io testing docs. Thank you!
@danielcostea21987 жыл бұрын
ng test is giving me an error : Can not load "webpack"! , is not showing me the tests, any help would be apreciated. Thanks!
@paulhalliday7 жыл бұрын
+Daniel Costea Have you tried this with a new Angular project?
@danielcostea21987 жыл бұрын
Yes Paul , right from scratch , 2 or 3 times actually, but managed to fixed it by adding to the package.json this: "@ngtools/webpack": "1.3.0". Which is really strange that the default Angular project is not working .Thank you for response Paul, appreciate it.