What I like about your channel is you actually give tutorials. Some other web dev channels, who shall not be named, spend 90% of the video talking about how the tutorial is irrelevant and how instead we should learn NextJs instead. Thank you Cosden!
@pranavgoel29Ай бұрын
Thanks for making this, helped me get started.
@gcg81874 ай бұрын
awesome, I really appreciate how you explained what have happening step by step :D
@techstacks.marviuz5 ай бұрын
This is good but I wanted an example on a page behind an oauth that has a captcha
@ToadyEN5 ай бұрын
Make a video when you find out how please.
@zaynelovecraft5 ай бұрын
Lmfao @@ToadyEN
@Joe-ka3 ай бұрын
I think captcha's whole point is to prevent bots like this from working, but there must be a way for devs to write tests and bypass this.
@techstacks.marviuz3 ай бұрын
Yeah and it works for me even if bypassing is the only option. I haven't found any proper and updated guide or video. Would really appreciate one.
@RonnieDenzel5 ай бұрын
Bro kicked in at the right moment,thanks codsen😅
@ice_so_creamyАй бұрын
Very good tutorial. Thanks man🙂
@srsh123453 ай бұрын
thank you so much for such a clear explanations
@antoniovm71162 ай бұрын
nice video, you could also add the test.beforeEach(...) outside every test.describe() you use.
@victorelgersma78452 ай бұрын
very useful tutorial! Thank you :)
@bariqdharmawan66045 ай бұрын
Great video love it. Do you plan continue this series? Probably testing with auth
@alexandergeorgesquire220Ай бұрын
Thankyou for the video
@Matkotech4 ай бұрын
Nice video! Can you share what theme are you using?
@ardianhotii5 ай бұрын
Very great , thanks for sharing , what about to test forms with bunch of fields some of them being optional but when filled should have this and this value etc , how to "speed" things up how to write a lot of tests faster because this way there are a lot of things to test and its time consuming any idea ?
@cosdensolutions5 ай бұрын
the nature of testing is time consuming. If you have a complex form with many conditions, you usually need to spend the time to write the tests for each condition. It's a pain but in the long run it pays off
@ardianhotii5 ай бұрын
@@cosdensolutions Yeah you are right , but what about projects with 1-2 devs working on it not a big app but "medium" size project is it really important to write these tests , and in what types of projects they are really important because in an "side project" app with 10 CRUDS I don't thinks its very necessary right
@cosdensolutions5 ай бұрын
@@ardianhotii For small projects like that it's not necessary to go that deep. These tests pay off much more at larger scales with 10+ employees and big codebases. Also really depends on the business needs. Not all screens are critical to test like that
@ardianhotii5 ай бұрын
@@cosdensolutions Thank you
@ardianhotii5 ай бұрын
@@cosdensolutions Thank you
@zillboy5 ай бұрын
Hi Cosden, btw which video software are you using for making videos. I see the cursor has kind of smooth animation, thanks
@cosdensolutions5 ай бұрын
screen studio!
@mtcindianutube5 ай бұрын
Hi, how do I get the test coverage report like in Jest
@muthukumar6045 ай бұрын
Can you create video for how to setup vitest, playwright with vite
@schmalt2 күн бұрын
Did you end up finding out how to do this? I'm trying to set up Playwright in Vite (already have some Vitest test cases written) but am running into issues re "require" vs "import"
@muthukumar604Күн бұрын
@schmalt no
@schmaltКүн бұрын
@@muthukumar604 ok cypress it is
@slhliwwa54035 ай бұрын
Bro do ou have react projects in your course???
@wishva5 ай бұрын
What is the screen recorder
@cosdensolutions5 ай бұрын
screen studio
@omooladev2 ай бұрын
Thank you
@otakuotaku67745 ай бұрын
Would you please start making videos about Next js
@nikitashaban97115 ай бұрын
Can you please fix the link of source code ?
@element42253 ай бұрын
what about [slug] actually the only tricky thing I guess
@11WicToR11Ай бұрын
the hardest thing i always struggle with while testing is deciding what is worth testing ...i always see these "does heading have correct name in it" and i feel like, why the fck do people test this :D