Great tips, thanks! Btw, to reduce lines of code in your unit tests, instead of findIncrementButton().trigger('click') await nextTick() you can use await findIncrementButton().trigger('click')
@ribl10002 жыл бұрын
The changes you mention are so subtle but so obvious when you point them out! Also, your pace of explaining these concepts is awesome!
@ajotel942 жыл бұрын
Wow, that's really something! Love how simple is that and at the same time - full of content, concise, meaty! I wish more presentations be like that! 🥰
@l2cri2 жыл бұрын
Thanks..very helpful..
@leuhenry80312 жыл бұрын
Thanks from TianJin China
@alexanderopalic18732 жыл бұрын
thank you awesome talk
@jo0o0oke3e3er2 жыл бұрын
14:15 i dont really agree withyou. sometimes you want to make sure that an event has an hook with a particular method. This check allow to aware that this hook could be potentially broken during some changes... and then change the unit test accordingly or, eventually, fix the source code.