This repository has been archived by the owner on May 31, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: add azure support * refactor: remove redundant code * refactor: refactor code for azure (#37) * fix: fix azure login * Feature/louis setup jest (#38) * test: setup jest for test * ci: add pre-push script * chore: fix typo --------- Co-authored-by: Louis <46361622+louis-lemon@users.noreply.github.com>
- Loading branch information
1 parent
fb6e0b3
commit 12b778c
Showing
9 changed files
with
2,558 additions
and
336 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 |
---|---|---|
|
@@ -67,4 +67,5 @@ Thumbs.db | |
|
||
|
||
*.js | ||
!jest.config.json | ||
!_*.js |
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" | ||
|
||
npx jest --watchAll=false |
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"preset": "ts-jest", | ||
"testEnvironment": "node", | ||
"rootDir": "./", | ||
"coverageDirectory": "<rootDir>/coverage", | ||
"collectCoverageFrom": ["<rootDir>/src/**/*.ts", "!<rootDir>/src/**/constant.ts", "!<rootDir>/src/**/type.ts"], | ||
"testPathIgnorePatterns": ["<rootDir>/node_modules"], | ||
"coverageReporters": ["html", "json"], | ||
"testMatch": ["<rootDir>/src/**/*.spec.ts", "<rootDir>/src/**/*.test.ts"] | ||
} |
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.