Reading documentation from softwaremill/elasticmq says, "While creating the FIFO queue, .fifo suffix will be added automatically to queue name.", so I change the file module.e2e-spec.ts like that:
** without this change, an error is displayed when start the container and the last test fails.
docker run --rm --name elasticmq -p 9324:9324 -v "$PWD:/etc/elasticmq" s12v/elasticmq
20:45:49.353 [main] INFO org.elasticmq.server.Main$ - Starting ElasticMQ server (0.15.8) ...
20:45:49.646 [main] ERROR org.elasticmq.server.QueueSorter$ - Dead letter queue test-dead not found
Reading documentation from softwaremill/elasticmq says, "While creating the FIFO queue, .fifo suffix will be added automatically to queue name.", so I change the file module.e2e-spec.ts like that:
Also, since the queue test-dead is set up with fifo, we must change the name in deadLettersQueue section.
Now it passed all test.
** without this change, an error is displayed when start the container and the last test fails.