mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-22 20:29:08 +00:00
fix: Removing call to actual endpoint (no-changelog) (#14687)
This commit is contained in:
@@ -473,6 +473,17 @@ describe('Execution', () => {
|
||||
});
|
||||
|
||||
it('should send proper payload for node rerun', () => {
|
||||
const mockUserData = [
|
||||
{
|
||||
firstname: 'Lawrence',
|
||||
lastname: 'Kertzmann',
|
||||
},
|
||||
];
|
||||
cy.intercept('GET', 'https://internal.users.n8n.cloud/webhook/random-data-api', {
|
||||
statusCode: 200,
|
||||
body: mockUserData,
|
||||
}).as('getRandomUsers');
|
||||
|
||||
cy.createFixtureWorkflow('Multiple_trigger_node_rerun.json', 'Multiple trigger node rerun');
|
||||
|
||||
workflowPage.getters.zoomToFitButton().click();
|
||||
|
||||
Reference in New Issue
Block a user