I am running REST Helper of Codeceptjs and Docker for API Testing but when I run it, it only show all passed and execution time is always 0ms
Output:
PS D:\work\testtt> docker-compose run --rm codeceptjs
CodeceptJS directory has been found.
CodeceptJS v2.0.4
Using test root "/tests"
Test @regression --
✔ Add Scholarship For Application @kss3 in **0ms**
✔ Add Accommodations For Application @kss3 in **0ms**
✔ Add Airport Transfer For Application @kss3 in **0ms**
✔ Add Booking Others @kss3 in **0ms**
✔ Add Booking Insurance @kss3 in **0ms**
My docker-compse file :
version: '3'
services:
codeceptjs:
image: codeception/codeceptjs
environment:
- CODECEPT_ARGS=-c ApiCarrotEnv.conf.js --grep kss3
volumes:
- .:/tests
container_name: docker-nightmare
But if I run without docker it ran normally.