Quiz Yourself on Jest

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

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.

Get hands-on with 1200+ tech skills courses.