This repository has been archived by the owner on Mar 18, 2022. It is now read-only.
-
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.
ADAPT-000: Add Identity Bar, Logo, Global Footer, SR only Text, Button (
#4) Adds new components: - Identity Bar - Logo - Global Footer - SR Only Text Improves Components: - Button Adds Tests and Test Runner Co-authored-by: Sherakama <[email protected]> Co-authored-by: Yvonne Tang <[email protected]>
- Loading branch information
1 parent
5cf6009
commit c3e3c7d
Showing
35 changed files
with
951 additions
and
331 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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name: "Run Jest Tests" | ||
|
||
# Trigger the workflow on merge of pull request or direct push, | ||
# but only for the main branch | ||
on: | ||
pull_request : | ||
types: [ opened, edited, synchronize, reopened] | ||
|
||
jobs: | ||
tests: | ||
name: 'Run Tests' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v2 | ||
- name: Set Node Version | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: 15.x | ||
- run: npm ci | ||
- run: npm run test | ||
- run: npm run test:coverage |
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,17 @@ | ||
module.exports = { | ||
"verbose": true, | ||
"testPathIgnorePatterns": [ | ||
"/node_modules/", | ||
"/docs/" | ||
], | ||
"testRegex": "(/test/.*|\\.(test|spec))\\.(js|jsx)$", | ||
"moduleFileExtensions": [ | ||
"js", | ||
"jsx", | ||
"json" | ||
], | ||
"moduleDirectories": [ | ||
"node_modules", | ||
"src" | ||
] | ||
} |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
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.