Test driven development with Vue.js by Sarah Dayan

Поділитися
Вставка
  • Опубліковано 29 вер 2024

КОМЕНТАРІ • 40

  • @VueConfToronto
    @VueConfToronto  4 роки тому +1

    Find all conference videos here: vuetoronto.com/videos
    Signup for conference updates here: vuetoronto.com
    Want to learn Vue 3.0 from the experts? bit.ly/2v8QALV

  • @AdrienJOLY
    @AdrienJOLY 4 роки тому +23

    That’s a very good introduction (and motivation) to TDD, applied to front-end development with Vue.js. Thank you, Sarah!

  • @simonhunt9857
    @simonhunt9857 4 роки тому +7

    Coming from a PHP background I was familiar with TDD but how to apply these principles to Vue development had never really 'clicked' for me until watching this video. So thanks for helping me to have that 'aha' moment!

  • @avimehenwal
    @avimehenwal 4 роки тому +4

    I wrote first test suite for my vue components yesterday. took me only 2 days XD

  • @JoeSchroecker
    @JoeSchroecker 4 роки тому +4

    Love it! Finally the 2nd step makes sense to me!

  • @DodaGarcia
    @DodaGarcia 3 роки тому +1

    As an (embarrassingly recent) adopter of TDD, I now kinda laugh at myself from all the years I spent thinking I couldn;'t afford the time to write the tests first.
    It does take time, obviously. But it takes at least one order of magnitude less time than it does to debug and fix broken code, especially when the fixes on one part start breaking another.
    It's like that great Jack Bergman quote: "There's never enough time to do it right, but there's always enough time to do it over."

  • @EricClaeren
    @EricClaeren 4 роки тому +3

    Great talk and the message is delivered very well! Thanks you Sarah.

  • @chenrvn
    @chenrvn 4 роки тому +3

    Excellent Talk, Thanks!
    1. You are awesome!
    2. The issue with TDD and Testing in global is the setup configuration and sometimes the time to run and get feedback from them.
    when u pass it over (as u say) the tests written is easier and faster
    Thanks for your explanation, very clear and U R Rock in live coding :)

    • @SarahDayanDev
      @SarahDayanDev 4 роки тому +2

      Thank you Chen! Unit tests should run fast, because they test small units and don't touch I/O. In my presentation, they took a bit longer than usual because somehow, when I set my computer offline, Jest suddenly became slow. In reality and on a daily basis, they're blazing fast.

    • @chenrvn
      @chenrvn 4 роки тому

      BTW i am just wrote a medium article full influence to your presentation in Angular :) [off course full feed back to u]
      So Thanks 4 your expression :)

  • @jajappp
    @jajappp 2 роки тому +1

    Thanks for sharing a drop of knowledge, rich content.
    Congratulations!
    very well presented.
    Success!

  • @SolidIncMedia
    @SolidIncMedia 4 роки тому +1

    This just serves to remind me that I'm really bad at writing tests. That is, only one project I've ever written has used tests. And they're out of date. And they're badly written tests.
    I should put the ideas in this video into practice before I push to production again..

  • @dopamine_Seeker
    @dopamine_Seeker 3 роки тому

    When I visit tailwind page I see her face now I'm seeing her video look more fater

  • @victornaut
    @victornaut 4 роки тому +1

    Jeez I wish I could speak that succinctly. Great talk.

  • @НикитаЗахаров-н3м
    @НикитаЗахаров-н3м 3 роки тому +1

    Thank you! Its really simple to understand with 3 steps

  • @Andrey-il8rh
    @Andrey-il8rh Рік тому

    Now I know who is displayed on the main page of Tailwind 😂

  • @jannesbehrens2163
    @jannesbehrens2163 4 роки тому +3

    thank you!

  • @DodaGarcia
    @DodaGarcia 3 роки тому +1

    Omg she's so awesome! I would watch her teach stuff all day

  • @zozo1603
    @zozo1603 3 роки тому

    Why is "a non-regression test is always nice"?
    If we used storybook's storyshots (which is actually using a jest feature) with puppeteer, we would get for free al the tests, that Sarah wrote in this demo.
    I love storyshots:D I barely need e2e or unit tests next to them to feel confident about my code.

  • @TruthMonster7777
    @TruthMonster7777 3 роки тому

    I loved this. I was trying TDD but was not confident in the approach but the way you explained made it very clear to me why this is necessary and also how to approach front-end components Test-driven development.

  • @programwithmanthan5868
    @programwithmanthan5868 3 роки тому

    Thank you Sarah for the introduction, VueConf Toronto please upload code samples as well with the video.

  • @kamalhm-dev
    @kamalhm-dev 4 роки тому +1

    one of the best, Sarah

  • @conerzyo
    @conerzyo 4 роки тому +1

    A really good one!

  •  4 роки тому +1

    thanks !

  • @jonnysongs
    @jonnysongs 4 роки тому +1

    Good talk

  • @ultrasamad
    @ultrasamad 4 роки тому +1

    Great talk.

  • @Caranor
    @Caranor 3 роки тому

    2 minutes into the video and I'm already convinced

  • @qianbang_
    @qianbang_ 4 роки тому

    This really helps how we code and helps see how to structure or refactor it.

  • @canaloneliojr
    @canaloneliojr 4 роки тому

    Does anyone know the vscode theme she is using?

  • @xspaniki
    @xspaniki 4 роки тому

    really nice presentation. thx!

  • @yun-ruzeng5026
    @yun-ruzeng5026 3 роки тому

    gooooooooood, love you

  • @MrKaki90
    @MrKaki90 2 роки тому

    99% TDD 1% Vue testing

  • @oopserv316
    @oopserv316 3 роки тому

    ty

  • @hellocheng7071
    @hellocheng7071 3 роки тому

    great great great

  • @nezarfadle7715
    @nezarfadle7715 4 роки тому

    Great talk!

  • @mluevanos
    @mluevanos 4 роки тому

    Great talk

  • @dokem
    @dokem 4 роки тому

    yes mam

  •  4 роки тому

    1:37 Uncle Bob said that not Yoda :)

  • @assaulth3ro911
    @assaulth3ro911 3 роки тому

    Well done presentation. It kept me focused, it was simple, and it explained the core principles as I need to understand them! Thank you. :)