项目作者: poojaram

项目描述 :
Problem sets practicing DOM manipulation using Javascript to respond to events
高级语言: JavaScript
项目地址: git://github.com/poojaram/DOM-Manipulations.git
创建时间: 2019-12-27T03:18:06Z
项目社区:https://github.com/poojaram/DOM-Manipulations

开源协议:MIT License

下载


Problem Set 05

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.

Checking Your Work

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:

  1. # install dependencies
  2. 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.

  1. # Example: run tests for problem-a
  2. npx jest problem-a
  3. # Run tests for all problems
  4. npx jest