Overview for 'testing'
Written by Bram.us
/ Original link
on Jan. 24, 2021
One of the new (experimental) additions to the Chrome 89 DevTools is the Puppeteer Recorder: DevTools can now generate Puppeteer scripts based on your interaction with the browser, making it easier…
Written by Laravel News
/ Original link
on Nov. 2, 2020
Better PHPUnit is a Visual Studio Code plugin by Caleb Porzio for running PHPUnit tests from the editor. The post Better PHPUnit VS Code Extension appeared first on Laravel News. Join the Laravel New…
Written by Frank de Jonge
/ Original link
on Mar. 23, 2020
Over the years, my coding practices have changed a lot. From hacking away until it works to TDD/BDD/DDD and everything in between. One of the biggest changes in my developer career has been when, why, and how I test my code. In particular, my view on mocking frameworks has changed a lot. A couple…
Written by Frank de Jonge
/ Original link
on Mar. 23, 2020
Over the years, my coding practices have changed a lot. From hacking away until it works to TDD/BDD/DDD and everything in between. One of the biggest changes in my developer career has been when, why, and how I test my code. In particular, my view on mocking frameworks has changed a lot. A couple…
Written by Bram.us
/ Original link
on Mar. 2, 2020
Nice tip by Kamran Ahmed: Find the commit that broke the tests $ git rebase -i –exec "yarn test" d294ae9 This will run "yarn test" on all the commits between d294ae9 and HEAD and stop on the commit…
Written by Bram.us
/ Original link
on Dec. 29, 2019
Solid intro to test your React apps with either Enzyme or React Testing Library: In this tutorial, we will look at how to do that by making use of a to-do application built with hooks. We’ll cover wr…