Skip to content

Commit

Permalink
chore: add http api tests to makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
rishtigupta committed Nov 26, 2024
1 parent 54e7bdc commit 145912f
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
6 changes: 5 additions & 1 deletion packages/client-sdk-nodejs/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.PHONY: test-auth-service test-cache-service test-leaderboard-service test-storage-service test-topics-service
.PHONY: test-auth-service test-cache-service test-leaderboard-service test-storage-service test-topics-service test-http-service


test-auth-service:
Expand All @@ -24,3 +24,7 @@ test-storage-service:
test-topics-service:
@echo "Testing topics service..."
@npm run integration-test-topics

test-http-service:
@echo "Testing http service..."
@npm run integration-test-http
6 changes: 5 additions & 1 deletion packages/client-sdk-web/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.PHONY: test-auth-service test-cache-service test-leaderboard-service test-storage-service test-topics-service
.PHONY: test-auth-service test-cache-service test-leaderboard-service test-storage-service test-topics-service test-http-service


test-auth-service:
Expand All @@ -24,3 +24,7 @@ test-storage-service:
test-topics-service:
@echo "Testing topics service..."
@npm run integration-test-topics

test-http-service:
@echo "Testing http service..."
@npm run integration-test-http

0 comments on commit 145912f

Please sign in to comment.