-
Notifications
You must be signed in to change notification settings - Fork 14.6k
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
chore: Moves AsyncSelect component and tests to own folder #13314
chore: Moves AsyncSelect component and tests to own folder #13314
Conversation
Codecov Report
@@ Coverage Diff @@
## master #13314 +/- ##
===========================================
- Coverage 77.20% 58.50% -18.71%
===========================================
Files 872 480 -392
Lines 45101 16003 -29098
Branches 5435 4130 -1305
===========================================
- Hits 34820 9362 -25458
+ Misses 10158 6641 -3517
+ Partials 123 0 -123
Flags with carried forward coverage won't be shown. Click here to find out more.
Continue to review full report at Codecov.
|
@@ -21,7 +21,7 @@ import PropTypes from 'prop-types'; | |||
// TODO: refactor this with `import { AsyncSelect } from src/components/Select` | |||
import { Select } from 'src/components/Select'; | |||
import { t, SupersetClient } from '@superset-ui/core'; | |||
import { getClientErrorObject } from '../utils/getClientErrorObject'; | |||
import { getClientErrorObject } from '../../utils/getClientErrorObject'; |
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.
nit: think we want absolute paths here src/utils/getClientErrorObject
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.
tagging this with revisit:src path
for someone else to come along and touch up later. On with the show!
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.
Agree with @pkdotson's nit, but approving nonetheless. We can/should go through and just sweep up ALL these paths one day.
SUMMARY
Moves
AsyncSelect
component and tests to own folder.TEST PLAN
1 - Execute
AsyncSelect
tests2 - All tests should pass
@rusackas
ADDITIONAL INFORMATION