This repository contains practice exercises for the Client-Side Web Development course at the UW iSchool.
To complete this problem set, follow the instructions in the README.md
file for each problem.
This exercise comes with a suite of unit tests that you can use to check your work and understanding. Tests are not guaranteed to be comprehensive.
In order to run these tests, you will need to install the test dependencies listed in the package.json
file:
# install dependencies
npm install
You run the tests by using the Jest test runner. You can install this package globally, or you can can run it through npx
. Be sure to run the tests from the repo's root directory.
# Example: run tests for problem-a
npx jest problem-a
# Run tests for all problems
npx jest