mirror of
https://github.com/apache/superset.git
synced 2026-04-19 08:04:53 +00:00
feat: adding all icons from the design system to the codebase (#11033)
* error -> error-solid * warning -> warning-solid * all the new icons mixed in! * card-view -> card_view * circle-check-solid -> circle_check_solid * corrected circle-check to new name and correct (stroke) icon * sort-asc/desc -> sort_asc/desc * databases -> database * compass -> nav_explore * pencil -> edit-alt * more pencil migrations * easy list view rename * star -> favorite (changed in Figma) * removing deprecated icon * renaming icon to mach figma * More -> More Horiz * forgot to change this when ranming the file * updating some icon names in use * adding hella icons * fixing errant viewboxes * removing dropdown-arrow in favor of triangle-down * adding key to storybook map. * fixing icon component reference * tweaks to fave star styling to support revised icon * fixing a bad icon inclusion * missed a license * touchup to virtual dataset... will tweak later. * e2e fix * linting
This commit is contained in:
@@ -118,12 +118,12 @@ describe('DashboardList', () => {
|
||||
|
||||
it('edits', () => {
|
||||
expect(wrapper.find(PropertiesModal)).not.toExist();
|
||||
wrapper.find('[data-test="pencil"]').first().simulate('click');
|
||||
wrapper.find('[data-test="edit-alt"]').first().simulate('click');
|
||||
expect(wrapper.find(PropertiesModal)).toExist();
|
||||
});
|
||||
|
||||
it('card view edits', () => {
|
||||
wrapper.find('[data-test="pencil"]').last().simulate('click');
|
||||
wrapper.find('[data-test="edit-alt"]').last().simulate('click');
|
||||
expect(wrapper.find(PropertiesModal)).toExist();
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user