-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
renamed manually in makefile, fixed import from sdk
- Loading branch information
Showing
4 changed files
with
28 additions
and
27 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
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
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 |
---|---|---|
@@ -1,37 +1,37 @@ | ||
USER_JOURNEY_PROJECT_NAME := user-journey | ||
USER_JOURNEY_PROJECT_DIR := ./packages/user-journey | ||
ARMORY_E2E_TESTING_PROJECT_NAME := armory-e2e-testing | ||
ARMORY_E2E_TESTING_PROJECT_DIR := ./packages/armory-e2e-testing | ||
|
||
# === Build === | ||
|
||
user-journey/build: | ||
npx nx build ${USER_JOURNEY_PROJECT_NAME} | ||
armory-e2e-testing/build: | ||
npx nx build ${ARMORY_E2E_TESTING_PROJECT_NAME} | ||
|
||
# === Code format === | ||
|
||
user-journey/format: | ||
npx nx format:write --projects ${USER_JOURNEY_PROJECT_NAME} | ||
armory-e2e-testing/format: | ||
npx nx format:write --projects ${ARMORY_E2E_TESTING_PROJECT_NAME} | ||
|
||
user-journey/lint: | ||
npx nx lint ${USER_JOURNEY_PROJECT_NAME} -- --fix | ||
armory-e2e-testing/lint: | ||
npx nx lint ${ARMORY_E2E_TESTING_PROJECT_NAME} -- --fix | ||
|
||
user-journey/format/check: | ||
npx nx format:check --projects ${USER_JOURNEY_PROJECT_NAME} | ||
armory-e2e-testing/format/check: | ||
npx nx format:check --projects ${ARMORY_E2E_TESTING_PROJECT_NAME} | ||
|
||
user-journey/lint/check: | ||
npx nx lint ${USER_JOURNEY_PROJECT_NAME} | ||
armory-e2e-testing/lint/check: | ||
npx nx lint ${ARMORY_E2E_TESTING_PROJECT_NAME} | ||
|
||
# === Testing === | ||
|
||
user-journey/test/type: | ||
armory-e2e-testing/test/type: | ||
npx tsc \ | ||
--project ${USER_JOURNEY_PROJECT_DIR}/tsconfig.lib.json \ | ||
--project ${ARMORY_E2E_TESTING_PROJECT_DIR}/tsconfig.lib.json \ | ||
--noEmit | ||
|
||
user-journey/test/unit/watch: | ||
make user-journey/test/unit ARGS=--watch | ||
armory-e2e-testing/test/unit/watch: | ||
make armory-e2e-testing/test/unit ARGS=--watch | ||
|
||
user-journey/test/e2e: | ||
npx nx test:e2e ${USER_JOURNEY_PROJECT_NAME} -- ${ARGS} | ||
armory-e2e-testing/test/e2e: | ||
npx nx test:e2e ${ARMORY_E2E_TESTING_PROJECT_NAME} -- ${ARGS} | ||
|
||
user-journey/test/e2e/watch: | ||
make user-journey/test/e2e ARGS=--watch | ||
armory-e2e-testing/test/e2e/watch: | ||
make armory-e2e-testing/test/e2e ARGS=--watch |
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