Factsheet
Free online tool to test out javascript?
How to learn Software Testing Properly (mainly for JS)?
JavaScript Testing Beginner's Course
This looks useful! I'm surprised that no resources I have found talk about testing in detail. I also like that it's only 7 days. Signing up!
More on reddit.comHow do you practice testing?
I started testing with Jest just by tossing it into any new projects I would begin working on. Forcing myself to follow the documentation and write tests for my code definitely helped me see the benefit, and now it means I donβt have to write weird demo scripts for my libraries, I can be confident my code works for most cases, and I can catch bugs as I introduce them. Iβve really enjoyed writing my tests in tandem with my coding, and sometimes I even find myself writing tests first and then implementing to get the tests to pass.
As for learning resources, I found the part that took me the most time to understand was what exactly a test was supposed to do. The best advice I can give is to just imagine you were using this package in another project, or imagine that youβre writing some example code. Then ask yourself, βwhat did I start with before calling this code?β βWhat do I get after running the code?β βIs this what I expected?β Tests are one of the most controversial topics in programming, just because everyone has their own opinions about how it should be done. I would recommend reading a little more about general testing paradigms, then sticking with what makes the most sense to you, and what helps you the most.
Test frameworks are a dime a dozen, as are articles that help you get from nothing to a project that you can start writing tests in. Remember, everyone does testing differently, so itβs only natural that there should be choices! If you have an existing project, or something small youβve been wanting to make, Iβd highly recommend just writing a test or two and seeing what you learn! Remember, tests arenβt required, they serve to give YOU and other developers peace of mind!
If you have any questions about testing, feel free to PM me and Iβll help in any way I can!
More on reddit.comHow fast is the online JavaScript compiler?
Is PlayCode's JavaScript compiler free?
Does the JavaScript compiler work offline?
Videos
Hi guys
I'm looking for a free online tool where I can practice HTML, CSS and Javascript. I prefer something with an console included so that I can see my error messages right away. playcode.io is pretty great, but requires a subscribtion if you write more than a certain amount of code. Do you known of other similar solutions where I can see the console as well? I've been using https://onecompiler.com/ which lacks the console : (
Thanks!