Appendix: Test-Driven Development
Learn how to set up a Jest development environment with jsdom and jquery on a local machine.
We'll cover the following...
Installing Jest
Jest is available through npm, and will
therefore require an npm environment, which can be created as follows:
npm init
Here, we have initialized ...