-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* move PrivateRoute to separate directory for consistency * move userAppselector out of private route and pass as proops * remove PrivateRoute test for now, clean up HtCard test * add HtTooltip base test * add mock api calls, not working Home.spec.tsx * reconfig to allow REACT_APP_HT_ENV to be 'PROD', 'DEV', or 'TEST', initite MSW if 'TEST' * little clean up * update test-wrapper, inital test for Home component * add simple tests for login and home components using new renderWithProvider wrapper function * fix auth returns user pk instead of username * fix bug fixes related to logout, strip more POC source * add new Site type definition, added a test for, and cleaned up the SiteList component
- Loading branch information
1 parent
e13ed52
commit 1e55d94
Showing
45 changed files
with
2,537 additions
and
249 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 |
---|---|---|
|
@@ -32,3 +32,5 @@ jobs: | |
|
||
- name: Test Node.js-${{ matrix.node }} | ||
run: npm test | ||
env: | ||
REACT_APP_HT_ENV: "TEST" |
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.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,3 +4,5 @@ README.md | |
.prettierignore | ||
.prettierrc.json | ||
node_modules/ | ||
**/*.spec.tsx | ||
**/*.spec.ts |
Oops, something went wrong.