$ go install github.com/cucumber/godog/cmd/godog@latest
$ export PATH="$PATH:$(go env GOPATH)/bin"
$ cd <folder>
$ godog
# Ejecuta los test para el tag puntuación
$ godog -t=@puntuacion
# Ejecuta escenarios de manera aleatoria
$ godog --random # útil para detectar dependencias
# Ejecuta escenarios de manera concurrente
$ godog --concurrency=2
$ godog --concurrency 2 --format progress
Do this...
- Describe the behaviour, not the implementation. Be concise.
- Use the context to share the state.
Do not do this...
- Alternate order Given-When-Then