-
Notifications
You must be signed in to change notification settings - Fork 14k
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
refactor: Bootstrap to AntD - ListGroup #13996
refactor: Bootstrap to AntD - ListGroup #13996
Conversation
Codecov Report
@@ Coverage Diff @@
## master #13996 +/- ##
==========================================
+ Coverage 79.70% 79.72% +0.01%
==========================================
Files 942 943 +1
Lines 47683 47707 +24
Branches 6010 6027 +17
==========================================
+ Hits 38008 38033 +25
+ Misses 9554 9553 -1
Partials 121 121
Flags with carried forward coverage won't be shown. Click here to find out more.
Continue to review full report at Codecov.
|
19ec006
to
c95d303
Compare
/testenv up |
@suddjian Ephemeral environment creation is currently limited to committers. |
/testenv up |
@junlincc Ephemeral environment spinning up at http://35.163.211.227: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.
Tested locally, LGTM
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!
@@ -83,7 +84,11 @@ describe('Header', () => { | |||
}; | |||
|
|||
function setup(overrideProps) { | |||
const wrapper = shallow(<Header {...props} {...overrideProps} />); | |||
const wrapper = mount( | |||
<ThemeProvider theme={supersetTheme}> |
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.
You can skip this, and the superset-ui
imports, by using the helper util:
import { styledMount as mount } from 'spec/helpers/theming';
or
import { styledShallow as shallow } from 'spec/helpers/theming';
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.
Fixed 😉
superset-frontend/spec/javascripts/sqllab/ShareSqlLabQuery_spec.jsx
Outdated
Show resolved
Hide resolved
c95d303
to
94892e8
Compare
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!
Ephemeral environment shutdown and build artifacts deleted. |
* refactor: Bootstrap to AntD - ListGroup * Improves theme handling on touched files
SUMMARY
ListGroup
component from Bootstrap to AntDcss
prop in testsSee: #10254
@rusackas @junlincc @pkdotson
BEFORE/AFTER SCREENSHOTS OR ANIMATED GIF
TEST PLAN
1 - Open a chart in Explore that has the Annotation and Layers control
2 - Check component
3 - Open a chart in Explore that has the Time Series Columns control
4 - Check component
ADDITIONAL INFORMATION