-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(mojaloop/#2734): failures in daily cron job running gp tests (#146)
fix(mojaloop/#2734): failures in daily cron job running GP tests - mojaloop/project#2734 - fixed logging to correctly display request logs. this is needed to help debug issues - re-factored config-loading as this was badly being being handled, which impacted unit/integration tests etc. - added unit tests for config-loading - added support for `CONFIG_OVERRIDE` env var to support using example.env for unit/integration tests, with default being `.env` when running `npm start`. chore: maintenance - updated dependencies - updated husky to the latest version, and moved config from package.json to .husky folder - replaced module-alias with native import alias's
- Loading branch information
Showing
41 changed files
with
1,488 additions
and
945 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -138,3 +138,6 @@ jspm_packages | |
secrets | ||
# Ignore any log files or application data | ||
*.sqlite | ||
|
||
# .env configs | ||
**/*.env |
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,4 @@ | ||
#!/usr/bin/env sh | ||
. "$(dirname -- "$0")/_/husky.sh" | ||
|
||
npm run lint |
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 |
---|---|---|
|
@@ -18,3 +18,4 @@ exclude: | |
- '**/.eslintrc.js' | ||
- '**/jest.integration.config.js' | ||
- '**/init/**' | ||
- '**/scripts/**' |
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
Oops, something went wrong.