fjhansen / node-server-testing-challenge

Challenge for Node Server Testing Module

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Server Testing

Topics

  • automated testing.
  • jest testing framework.
  • supertest module.

Assignment

For this project you will use Test Driven Development to create a RESTful API using Node.js and Express that publishes a set of endpoints to manage a resource of your choosing. Data can be stored in memory, adding a test database is optional.

Download Project and Install Dependencies

  • fork and clone this repository.
  • CD into the folder where you downloaded the repository.
  • run npm i to download all dependencies.
  • type npm test to run the tests.

Requirements

  • use jest and supertest to write the tests.
  • Your API must be able to create and delete a resource of your choosing.
  • Write a minimum of two tests per route handler.

About

Challenge for Node Server Testing Module