An open API service indexing awesome lists of open source software.

https://github.com/iampeterbanjo/get-tdd

Get Test-Driven Development
https://github.com/iampeterbanjo/get-tdd

Last synced: 2 months ago
JSON representation

Get Test-Driven Development

Awesome Lists containing this project

README

        

# Get Test-Driven Development

Test-Driven Development is programming practice where:

- Tests are written before executable code
- Code is updated to make the tests pass
- Code is refactored to improve its design

This is commonly known as Red, Green and Refactor.

## Requirements

- NodeJs
- npm

## Getting started

- `npm install`
- `npm run dev`
- `npm run watch-tests`

## Calculator API

- Receives and responds in JSON
- Validates inputs
- Features health, add and multiply routes