Skip to content

Commit

Permalink
Add a docker-compose.yml to run the tests without installing deno
Browse files Browse the repository at this point in the history
The tests can be run using `docker compose up`. This runs through the tests once. If all tests succeed (as is the case at the time of this commit), the command exits with code `0`. Otherwise, with a non-zero exit code.

Refs:
TELESTION-451 Add Gherkin-based executable specifications for Backend Services
  • Loading branch information
pklaschka committed Dec 16, 2023
1 parent 6aaf9ec commit 78b8ced
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions backend-deno/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
services:
backend-deno:
image: denoland/deno:1.39.0
command: ["test", "--allow-all", "/app/cucumber/test.ts"]
volumes:
- .:/app
- ../backend-features:/features

0 comments on commit 78b8ced

Please sign in to comment.