mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 10:31:15 +00:00
feat(editor): Update icons to Lucide icons (#16231)
Co-authored-by: Mutasem Aldmour <mutasem@n8n.io>
This commit is contained in:
@@ -1,7 +1,6 @@
|
||||
import { render, screen } from '@testing-library/vue';
|
||||
|
||||
import N8nAlert from './Alert.vue';
|
||||
import N8nIcon from '../N8nIcon';
|
||||
|
||||
describe('components', () => {
|
||||
describe('N8nAlert', () => {
|
||||
@@ -21,11 +20,14 @@ describe('components', () => {
|
||||
title: 'Title',
|
||||
default: 'Message',
|
||||
aside: '<button>Click me</button>',
|
||||
icon: '<n8n-icon icon="plus-circle" />',
|
||||
icon: '<n8n-icon icon="circle-plus" />',
|
||||
},
|
||||
global: {
|
||||
components: {
|
||||
'n8n-icon': N8nIcon,
|
||||
'n8n-icon': {
|
||||
template: '<span class="n8n-icon" />',
|
||||
props: ['icon'],
|
||||
},
|
||||
},
|
||||
},
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user