-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: add web and nodejs sdk makefiles (#1412)
In order to standardize testing from the canaries, we add makefiles with the standard per-service target names.
- Loading branch information
Showing
2 changed files
with
52 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
.PHONY: test-auth-service test-cache-service test-leaderboard-service test-storage-service test-topics-service | ||
|
||
|
||
test-auth-service: | ||
@echo "Testing auth service..." | ||
@npm run integration-test-auth | ||
|
||
|
||
test-cache-service: | ||
@echo "Testing cache service..." | ||
@npm run integration-test-cache | ||
|
||
|
||
test-leaderboard-service: | ||
@echo "Testing leaderboard service..." | ||
@npm run integration-test-leaderboard | ||
|
||
|
||
test-storage-service: | ||
@echo "Testing storage service..." | ||
@npm run integration-test-storage | ||
|
||
|
||
test-topics-service: | ||
@echo "Testing topics service..." | ||
@npm run integration-test-topics |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
.PHONY: test-auth-service test-cache-service test-leaderboard-service test-storage-service test-topics-service | ||
|
||
|
||
test-auth-service: | ||
@echo "Testing auth service..." | ||
@npm run integration-test-auth | ||
|
||
|
||
test-cache-service: | ||
@echo "Testing cache service..." | ||
@npm run integration-test-cache | ||
|
||
|
||
test-leaderboard-service: | ||
@echo "Testing leaderboard service..." | ||
@npm run integration-test-leaderboard | ||
|
||
|
||
test-storage-service: | ||
@echo "Testing storage service..." | ||
@npm run integration-test-storage | ||
|
||
|
||
test-topics-service: | ||
@echo "Testing topics service..." | ||
@npm run integration-test-topics |