mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
feat(editor): Unify regular and trigger node creator panels (#5315)
* WIP: Merge TriggerHelperPanel with MainPanel * WIP: Implement switching between views * Remove logging * WIP: Rework search * Fix category toggling and search results display * Fix node item description * Sort actions based on the root view * Adjust personalisation modal, make trigger canvas node round * Linting fixes * Fix filtering of API options * Fix types and no result state * Cleanup * Linting fixes * Adjust mode prop for node creator tracking * Fix merging of core nodes and filtering of single placeholder actions * Lint fixes * Implement actions override, fix node creator view item spacing and increase click radius of trigger node icon * Fix keyboard view navigation * WIP: E2E Tests * Address product review * Minor fixes & cleanup * Fix tests * Some more test fixes * Add specs to check actions and panels * Update personalisation survey snapshot
This commit is contained in:
@@ -26,7 +26,8 @@ describe('Data transformation expressions', () => {
|
||||
|
||||
ndv.getters.inlineExpressionEditorInput().clear().type(input);
|
||||
ndv.actions.execute();
|
||||
ndv.getters.outputDataContainer().should('be.visible').contains(output);
|
||||
ndv.getters.outputDataContainer().should('be.visible')
|
||||
ndv.getters.outputDataContainer().contains(output);
|
||||
});
|
||||
|
||||
it('$json + n8n string methods', () => {
|
||||
@@ -40,7 +41,8 @@ describe('Data transformation expressions', () => {
|
||||
|
||||
ndv.getters.inlineExpressionEditorInput().clear().type(input);
|
||||
ndv.actions.execute();
|
||||
ndv.getters.outputDataContainer().should('be.visible').contains(output);
|
||||
ndv.getters.outputDataContainer().should('be.visible')
|
||||
ndv.getters.outputDataContainer().contains(output);
|
||||
});
|
||||
|
||||
it('$json + native numeric methods', () => {
|
||||
@@ -54,7 +56,8 @@ describe('Data transformation expressions', () => {
|
||||
|
||||
ndv.getters.inlineExpressionEditorInput().clear().type(input);
|
||||
ndv.actions.execute();
|
||||
ndv.getters.outputDataContainer().should('be.visible').contains(output);
|
||||
ndv.getters.outputDataContainer().should('be.visible')
|
||||
ndv.getters.outputDataContainer().contains(output);
|
||||
});
|
||||
|
||||
it('$json + n8n numeric methods', () => {
|
||||
@@ -68,7 +71,8 @@ describe('Data transformation expressions', () => {
|
||||
|
||||
ndv.getters.inlineExpressionEditorInput().clear().type(input);
|
||||
ndv.actions.execute();
|
||||
ndv.getters.outputDataContainer().should('be.visible').contains(output);
|
||||
ndv.getters.outputDataContainer().should('be.visible')
|
||||
ndv.getters.outputDataContainer().contains(output);
|
||||
});
|
||||
|
||||
it('$json + native array methods', () => {
|
||||
@@ -82,7 +86,8 @@ describe('Data transformation expressions', () => {
|
||||
|
||||
ndv.getters.inlineExpressionEditorInput().clear().type(input);
|
||||
ndv.actions.execute();
|
||||
ndv.getters.outputDataContainer().should('be.visible').contains(output);
|
||||
ndv.getters.outputDataContainer().should('be.visible')
|
||||
ndv.getters.outputDataContainer().contains(output);
|
||||
});
|
||||
|
||||
it('$json + n8n array methods', () => {
|
||||
|
||||
Reference in New Issue
Block a user