regular kata to learn and improve test driven development skills
- make (<- recommended)
- docker
- Clone the repository
- Build the project
- either
make build(<- recommended) - or
docker-compose build
- either
- (optional) configure .env
- Start the mob session
make mob_new - Start the container
docker compose run --rm app bash - Write a failing test
- Run the test
npm test - Pass to the next person by running
mob next
- Enter the mob session
make mob_join - overtake the mob session
mob start - Implement against the test
- Run the test
npm test - Write a failing test
- Pass to the next person by running
mob next - Next person can start at step 2