-
Notifications
You must be signed in to change notification settings - Fork 14.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(nav): Update Tabbed Nav on CRUD Pages #21213
Conversation
Storybook has completed and can be viewed at |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It looks like the CI has something wrong with it, you have the same error that Phillip did. . .Potentially just need a rebase.
@@ -139,6 +139,10 @@ describe('DatabaseList', () => { | |||
expect(wrapper.find(SubMenu)).toExist(); | |||
}); | |||
|
|||
it('renders a SubMenu with no tabs', () => { | |||
expect(wrapper.find(SubMenu).props().tabs).toBeUndefined(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is undefined correct here or null?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
undefined is correct since nothing should be passed to it, not even null.
}); | ||
|
||
it('renders a SubMenu with no tabs', () => { | ||
expect(wrapper.find(SubMenu).props().tabs).toBeUndefined(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
same thought process here.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
undefined is correct since nothing should be passed to it, not even null.
d0e9c7a
to
3055825
Compare
@AAfghahi I just rebased it, however, I can see all latest PRs failing because some new changes introduced in master regarding |
Storybook has completed and can be viewed at |
/testenv up |
@lyndsiWilliams Container image not yet published for this PR. Please try again when build is complete. |
@lyndsiWilliams Ephemeral environment creation failed. Please check the Actions logs for details. |
3055825
to
2c0e779
Compare
Storybook has completed and can be viewed at |
2c0e779
to
e431015
Compare
Storybook has completed and can be viewed at |
Codecov Report
@@ Coverage Diff @@
## master #21213 +/- ##
=======================================
Coverage 66.67% 66.67%
=======================================
Files 1793 1793
Lines 68532 68532
Branches 7282 7282
=======================================
Hits 45695 45695
Misses 20974 20974
Partials 1863 1863
Flags with carried forward coverage won't be shown. Click here to find out more. 📣 We’re building smart automated test selection to slash your CI/CD build times. Learn more |
@AAfghahi all rebased and passing the checks now. |
/testenv up |
@lyndsiWilliams Ephemeral environment spinning up at http://52.35.6.192:8080. Credentials are |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm!
e431015
to
223d29d
Compare
/testenv up |
@yousoph Ephemeral environment spinning up at http://54.201.59.174:8080. Credentials are |
223d29d
to
a98defe
Compare
/testenv up |
@yousoph Ephemeral environment spinning up at http://35.89.245.103:8080. Credentials are |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nice tests, too!
Ephemeral environment shutdown and build artifacts deleted. |
SUMMARY
These changes are part of a bigger collection of changes we are introducing to navigation in our menu to direct users to more useful flows.
BEFORE/AFTER SCREENSHOTS OR ANIMATED GIF
Before:
![error](https://user-images.githubusercontent.com/38889534/186922697-539e581a-54bd-4cf4-8ce0-347f4110aa04.gif)
After:
![test](https://user-images.githubusercontent.com/38889534/186922865-91113558-4487-4524-955c-300696b4a8a0.gif)
TESTING INSTRUCTIONS
ADDITIONAL INFORMATION