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!
@gcg81875 ай бұрын
awesome, I really appreciate how you explained what have happening step by step :D
@pranavgoel292 ай бұрын
Thanks for making this, helped me get started.
@srsh123454 ай бұрын
thank you so much for such a clear explanations
@techstacks.marviuz6 ай бұрын
This is good but I wanted an example on a page behind an oauth that has a captcha
@ToadyEN6 ай бұрын
Make a video when you find out how please.
@zaynelovecraft6 ай бұрын
Lmfao @@ToadyEN
@Joe-ka4 ай бұрын
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.marviuz4 ай бұрын
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.
@ice_so_creamy2 ай бұрын
Very good tutorial. Thanks man🙂
@RonnieDenzel6 ай бұрын
Bro kicked in at the right moment,thanks codsen😅
@SuchithKumarGM-l1x17 күн бұрын
very helpful and easilt explained
@bariqdharmawan66046 ай бұрын
Great video love it. Do you plan continue this series? Probably testing with auth
@antoniovm71163 ай бұрын
nice video, you could also add the test.beforeEach(...) outside every test.describe() you use.
@victorelgersma78453 ай бұрын
very useful tutorial! Thank you :)
@Matkotech5 ай бұрын
Nice video! Can you share what theme are you using?
@thiagomiranda83115 күн бұрын
wonder if it is possible to remove these data-testid attributes from the production build without having to use conditionals every time. They make it so easy to scrap your site/app.
@alexandergeorgesquire2202 ай бұрын
Thankyou for the video
@zillboy6 ай бұрын
Hi Cosden, btw which video software are you using for making videos. I see the cursor has kind of smooth animation, thanks
@cosdensolutions6 ай бұрын
screen studio!
@ardianhotii6 ай бұрын
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 ?
@cosdensolutions6 ай бұрын
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
@ardianhotii6 ай бұрын
@@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
@cosdensolutions6 ай бұрын
@@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
@ardianhotii6 ай бұрын
@@cosdensolutions Thank you
@ardianhotii6 ай бұрын
@@cosdensolutions Thank you
@omooladev3 ай бұрын
Thank you
@slhliwwa54036 ай бұрын
Bro do ou have react projects in your course???
@wishva6 ай бұрын
What is the screen recorder
@cosdensolutions6 ай бұрын
screen studio
@muthukumar6046 ай бұрын
Can you create video for how to setup vitest, playwright with vite
@schmaltАй бұрын
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
@otakuotaku67746 ай бұрын
Would you please start making videos about Next js
@mtcindianutube6 ай бұрын
Hi, how do I get the test coverage report like in Jest
@element42254 ай бұрын
what about [slug] actually the only tricky thing I guess
@nikitashaban97116 ай бұрын
Can you please fix the link of source code ?
@11WicToR112 ай бұрын
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