Spent more than 3+ hours of my day watching your videos and it was worth it
@alex_blue5802 Жыл бұрын
This is the BEST tutorial for learning Vue test utils. Thank you for taking the time to do this. By the way, you are thinking of the css property text-decoration, not text-transform.
@asim-gandu-phenchod3 жыл бұрын
56:45 it is actually "text-decoration: line-through"
@romko-romario2 жыл бұрын
Thanks for a great tutorial! It's exactly what I have been looking for to quickly learn unit testing for Vue, as I urgently need to do it on a project. I wish success and rapid growth to the channel!
@mikoajgraja59542 жыл бұрын
It is really great tutorial. Why i think so? I tried to do some tests before this tutorial and run to problems that were all discussed at this video (get/find, not.exists, shallowMount/Mount). I like the pace and the organized format of this video. Thanks!
@laurin__ Жыл бұрын
Damn I love your videos, not just raw info but also fun human communication feels like free time at work :D
@asim-gandu-phenchod3 жыл бұрын
This is what I had been looking for for past few weeks. And finally today I am on this channel after watching your Nuxt 3 hours long tutorial. Thanks for the quality bro
@bartolace37742 жыл бұрын
hello i'm from brasil, and this video really helped me!! thanks, i not found anyone content about test utils in my language, that at altest teaches as you do. text-decoration: line-through;
@mikoajgraja59542 жыл бұрын
It will be great if you continue this video. My biggest concern now is testing using store (ex. Pinia)
@tjphan40352 жыл бұрын
Hey your teaching method is great. The authenticity, helpfulness, and pacing is apparent. Looking forward to your future vids!
@xvicio98 Жыл бұрын
nah the pacing is too slow imo. but still great tutorial
@pedrohenriquerocha8741 Жыл бұрын
great tutotiral! thanks for all the information!!
@brianrahmarela65523 жыл бұрын
wow. this is absolutely amazing explanation. Thanks a lot. this is what i'been lookin for. good bless u man
@horacinis2 жыл бұрын
From the intro and the logo, I thought that you were Travis for a second 😅
@TheJooshIsLoose2 жыл бұрын
Great video, thanks for the info
@vic_shine3 жыл бұрын
Thanks for the video! It would be interesting to know how to test a Vue 3 application on TypeScript (an idea to continue this video).
@minhthongvo59893 жыл бұрын
Thank you so much for this video, it help me a lot for my project!
@mohammedsaber67822 жыл бұрын
Great tut bro , keep going.
@kisoindran64602 жыл бұрын
A great tutorial for beginners! Thanks.
@weijiephua41922 жыл бұрын
thanks for the great tutorial!
@hjalbarran3 жыл бұрын
You are a guru bro! Thanks.
@shahnewazaminjolly3672 жыл бұрын
Thank you so much for such a great tutorial. It helped me a lot to understand Vue Test Utils. 😀
@eyalankri2 жыл бұрын
Great video. thank you.
@ZTF6663 жыл бұрын
Looks like you read my mind today ! haha
@leonardohirsch90862 жыл бұрын
Thanks!
@bekturmuratov78532 жыл бұрын
this is awesome tutorial, thank you very much!!!
@alamir411 Жыл бұрын
Thanks
@GerardoBelot2 жыл бұрын
what a good tutorial 👏👏👏
@salvadorcidadealta2 жыл бұрын
Awesome! Thank you a lot
@yabuking842 жыл бұрын
Learned a lot! Keep it up man! 🙏👍
@MrKaki903 жыл бұрын
Good for beginners
@farhanmahim3 жыл бұрын
Can you do a Quasar Crash course with Vue 3
@aghilpwilson8793 жыл бұрын
can you do a video with strapi and knex js
@namng54223 жыл бұрын
can you make video with Vuejs ,how to combine cypress with jest ?
@moatasimashraf6818 Жыл бұрын
in the "Finding Elements" section in the video, I keep getting the following error: TypeError: Invalid value used as weak map key at WeakMap.set () and it says the error comes from this line: const wrapper = mount(TodoApp); can anyone help?
@mahendranath25043 жыл бұрын
Thank you so much
@XY-ds6ej3 жыл бұрын
TDD is such a cool thing, but the most of us havent enought time to implement tests and/or the clients dont wanna pay for it .
@KsaniyaN3 жыл бұрын
Hi Laith! Thank you for the video! A question - why using a beforeEach hook better than declaring wrapper as const at the beginning of describe()?
@asim-gandu-phenchod3 жыл бұрын
It is to reduce the redundancy in the code and follow the DRY (don't repeat yourself) principle
@Ana-mn5io2 жыл бұрын
text-decoration: line-through; is was like this?
@yankee-in-london2 жыл бұрын
I was thrown by your early comment that Vue Test Utils was built on top of Jest. I'm fairly certain this is NOT the case and would be a big mistake if it were. Currently it's very common to integrate the "test runner" functionality with Vitest or Cypress. Am I missing something?
@LachlanMiller2 жыл бұрын
Test Utils is runner agnostic - you are right, you can use it w/ Cypress/Vitest/Jestl, or even without a test runner.