Vue Testing with Vue Test Utils

Поделиться
HTML-код
  • Опубликовано: 16 ноя 2024

Комментарии • 44

  • @asim-gandu-phenchod
    @asim-gandu-phenchod 3 года назад +4

    Spent more than 3+ hours of my day watching your videos and it was worth it

  • @romko-romario
    @romko-romario 2 года назад +3

    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!

  • @laurin__
    @laurin__ Год назад

    Damn I love your videos, not just raw info but also fun human communication feels like free time at work :D

  • @alex_blue5802
    @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-phenchod
    @asim-gandu-phenchod 3 года назад +1

    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

  • @mikoajgraja5954
    @mikoajgraja5954 2 года назад +1

    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!

  • @asim-gandu-phenchod
    @asim-gandu-phenchod 3 года назад +7

    56:45 it is actually "text-decoration: line-through"

  • @tjphan4035
    @tjphan4035 2 года назад

    Hey your teaching method is great. The authenticity, helpfulness, and pacing is apparent. Looking forward to your future vids!

    • @xvicio98
      @xvicio98 Год назад

      nah the pacing is too slow imo. but still great tutorial

  • @brianrahmarela6552
    @brianrahmarela6552 3 года назад +1

    wow. this is absolutely amazing explanation. Thanks a lot. this is what i'been lookin for. good bless u man

  • @bartolace3774
    @bartolace3774 2 года назад

    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;

  • @pedrohenriquerocha8741
    @pedrohenriquerocha8741 Год назад

    great tutotiral! thanks for all the information!!

  • @horacinis
    @horacinis 2 года назад

    From the intro and the logo, I thought that you were Travis for a second 😅

  • @mikoajgraja5954
    @mikoajgraja5954 2 года назад

    It will be great if you continue this video. My biggest concern now is testing using store (ex. Pinia)

  • @shahnewazaminjolly367
    @shahnewazaminjolly367 2 года назад

    Thank you so much for such a great tutorial. It helped me a lot to understand Vue Test Utils. 😀

  • @kisoindran6460
    @kisoindran6460 2 года назад

    A great tutorial for beginners! Thanks.

  • @TheJooshIsLoose
    @TheJooshIsLoose 2 года назад

    Great video, thanks for the info

  • @moatasimashraf6818
    @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?

  • @minhthongvo5989
    @minhthongvo5989 2 года назад

    Thank you so much for this video, it help me a lot for my project!

  • @mohammedsaber6782
    @mohammedsaber6782 2 года назад

    Great tut bro , keep going.

  • @hjalbarran
    @hjalbarran 3 года назад

    You are a guru bro! Thanks.

  • @GerardoBelot
    @GerardoBelot 2 года назад

    what a good tutorial 👏👏👏

  • @yabuking84
    @yabuking84 2 года назад

    Learned a lot! Keep it up man! 🙏👍

  • @weijiephua4192
    @weijiephua4192 2 года назад

    thanks for the great tutorial!

  • @bekturmuratov7853
    @bekturmuratov7853 2 года назад

    this is awesome tutorial, thank you very much!!!

  • @KsaniyaN
    @KsaniyaN 3 года назад

    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-phenchod
      @asim-gandu-phenchod 3 года назад

      It is to reduce the redundancy in the code and follow the DRY (don't repeat yourself) principle

  • @eyalankri
    @eyalankri 2 года назад

    Great video. thank you.

  • @vic_shine
    @vic_shine 3 года назад +1

    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).

  • @ZTF666
    @ZTF666 3 года назад +1

    Looks like you read my mind today ! haha

  • @MrKaki90
    @MrKaki90 3 года назад

    Good for beginners

  • @salvadorcidadealta
    @salvadorcidadealta 2 года назад

    Awesome! Thank you a lot

  • @leonardohirsch9086
    @leonardohirsch9086 2 года назад

    Thanks!

  • @namng5422
    @namng5422 3 года назад

    can you make video with Vuejs ,how to combine cypress with jest ?

  • @alamir411
    @alamir411 Год назад

    Thanks

  • @Ana-mn5io
    @Ana-mn5io 2 года назад

    text-decoration: line-through; is was like this?

  • @aghilpwilson879
    @aghilpwilson879 3 года назад

    can you do a video
    with strapi and knex js

  • @XY-ds6ej
    @XY-ds6ej 3 года назад +1

    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
    .

  • @yankee-in-london
    @yankee-in-london 2 года назад

    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?

    • @LachlanMiller
      @LachlanMiller 2 года назад +1

      Test Utils is runner agnostic - you are right, you can use it w/ Cypress/Vitest/Jestl, or even without a test runner.

  • @farhanmahim
    @farhanmahim 3 года назад +1

    Can you do a Quasar Crash course with Vue 3

  • @mahendranath2504
    @mahendranath2504 3 года назад

    Thank you so much

  • @lakshmichaitanya1316
    @lakshmichaitanya1316 3 года назад

    make a next.js tut bro!

  • @Kco86
    @Kco86 7 месяцев назад

    * text-decoration: line-through;