Quiz Yourself on Jest

This quiz will test what you have learned in this chapter.

We'll cover the following...

A project has defined the following npm scripts:

{
  "scripts": {
    "test": "jest",
    "test:watch": "jest --watch",
    "test:single": "jest -t",
    "test:verbose": "jest --verbose",
    "test:coverage": "jest --coverage"
  }
}

The following files exist in the project:

  • validators.js
  • validators.test.js
  • utils.js
  • utils.spec.js

The following questions are regarding the above project.

Access this course and 1400+ top-rated courses and projects.