Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(mojaloop/#3909): add unit tests for fx flow #488

Merged
merged 5 commits into from
Jun 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ It is recommend that you set the `NODE_VERSION` argument against the version set
This can be done using the following command:

```bash
export NODE_VERSION="$(cat .nvmrc)-alpine"
export NODE_VERSION="$(cat .nvmrc)-alpine3.19"

docker build \
--build-arg NODE_VERSION=$NODE_VERSION \
Expand Down
6 changes: 4 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ services:
aliases:
- ttkbackendsim
- ttkhubsim
image: mojaloop/ml-testing-toolkit:v15.0.0
image: mojaloop/ml-testing-toolkit:v17.2.2
volumes:
- "./docker/ml-testing-toolkit/spec_files:/opt/app/spec_files"
- "./docker/ml-testing-toolkit/secrets:/opt/app/secrets"
Expand All @@ -71,11 +71,12 @@ services:
environment:
- AUTH_ENABLED=FALSE
command: npm start
user: root

# For local development we want to have ttk-ui
#
mojaloop-testing-toolkit-ui:
image: mojaloop/ml-testing-toolkit-ui:v15.0.0
image: mojaloop/ml-testing-toolkit-ui:v15.5.0
ports:
- "6060:6060"
networks:
Expand All @@ -86,6 +87,7 @@ services:
command:
- sh
- /usr/share/nginx/start.sh
user: root

kafka:
networks:
Expand Down
Loading