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
- Host: GitHub
- URL: https://github.com/iampeterbanjo/get-tdd
- Owner: iampeterbanjo
- License: mit
- Created: 2022-04-19T20:08:55.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-10-27T08:23:01.000Z (over 1 year ago)
- Last Synced: 2025-01-21T03:12:14.081Z (4 months ago)
- Language: TypeScript
- Size: 254 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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 designThis 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