Skip to content

Commit 6205c5f

Browse files
committed
fix(justfile): Update test command
1 parent c1312ee commit 6205c5f

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

justfile

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,13 +61,14 @@ reload:
6161

6262
# Watch log output from services
6363
logs:
64-
@cd contrib && docker-compose -f docker-compose.dev.yml logs -f
64+
@cd contrib && docker compose -f docker-compose.dev.yml logs -f
6565

6666
# Stop all services
6767
down:
68-
@cd contrib && docker-compose -f docker-compose.dev.yml down
68+
@cd contrib && docker compose -f docker-compose.dev.yml down
6969
@cd contrib/local-network && docker compose down
7070
docker rm -f indexer-service tap-agent gateway block-oracle indexer-agent graph-node redpanda tap-aggregator tap-escrow-manager 2>/dev/null || true
7171

7272
test-local:
73-
cd rav_e2e && cargo run
73+
@cd rav_e2e && ./fund_escrow.sh
74+
@cd rav_e2e && cargo run

0 commit comments

Comments
 (0)