-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
3,861 additions
and
3,969 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 |
---|---|---|
@@ -1,7 +0,0 @@ | ||
npx --no-install commitlint --edit "$1" --quiet || | ||
( | ||
echo -e "\n❌ Please check commit message format! \n" | ||
false; | ||
) | ||
|
||
echo -e "✅ Commit message format correct! \n" | ||
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,7 +0,0 @@ | ||
npx lint-staged --quiet || | ||
( | ||
echo -e "\n❌ Prettier formatting failed!\n" | ||
false; | ||
) | ||
|
||
echo -e "✅ Prettier formatting successful!" | ||
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
This file was deleted.
Oops, something went wrong.
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,8 @@ | ||
import type { Config } from 'jest'; | ||
|
||
const jestConfig: Config = { | ||
preset: 'jest-preset-angular', | ||
setupFilesAfterEnv: ['<rootDir>/setup-jest.ts'], | ||
}; | ||
|
||
export default jestConfig; |
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,7 +1,7 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<testsuites name="jest tests" tests="1" failures="0" errors="0" time="29.734"> | ||
<testsuite name="AppComponent" errors="0" failures="0" skipped="0" timestamp="2024-11-03T08:12:58" time="26.051" tests="1"> | ||
<testcase classname="AppComponent should create the app" name="AppComponent should create the app" time="0.232"> | ||
<testsuites name="jest tests" tests="1" failures="0" errors="0" time="6.442"> | ||
<testsuite name="AppComponent" errors="0" failures="0" skipped="0" timestamp="2025-01-20T18:33:54" time="5.433" tests="1"> | ||
<testcase classname="AppComponent should create the app" name="AppComponent should create the app" time="0.041"> | ||
</testcase> | ||
</testsuite> | ||
</testsuites> |
Oops, something went wrong.