mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-22 04:10:01 +00:00
fix: Removing call to actual endpoint (no-changelog) (#14687)
This commit is contained in:
2
.github/workflows/e2e-flaky.yml
vendored
2
.github/workflows/e2e-flaky.yml
vendored
@@ -66,4 +66,4 @@ jobs:
|
|||||||
NODE_OPTIONS: --dns-result-order=ipv4first
|
NODE_OPTIONS: --dns-result-order=ipv4first
|
||||||
E2E_TESTS: true
|
E2E_TESTS: true
|
||||||
SHELL: /bin/sh
|
SHELL: /bin/sh
|
||||||
CYPRESS_NODE_VIEW_VERSION: 2
|
CYPRESS_NODE_VIEW_VERSION: 2
|
||||||
|
|||||||
2
.github/workflows/units-tests-reusable.yml
vendored
2
.github/workflows/units-tests-reusable.yml
vendored
@@ -86,7 +86,7 @@ jobs:
|
|||||||
run: pnpm test:frontend
|
run: pnpm test:frontend
|
||||||
|
|
||||||
- name: Upload test results to Codecov
|
- name: Upload test results to Codecov
|
||||||
if: ${{ !cancelled() }} # Run even if tests fail
|
if: ${{ !cancelled() }} # Run even if tests fail
|
||||||
uses: codecov/test-results-action@v1
|
uses: codecov/test-results-action@v1
|
||||||
with:
|
with:
|
||||||
token: ${{ secrets.CODECOV_TOKEN }}
|
token: ${{ secrets.CODECOV_TOKEN }}
|
||||||
|
|||||||
@@ -473,6 +473,17 @@ describe('Execution', () => {
|
|||||||
});
|
});
|
||||||
|
|
||||||
it('should send proper payload for node rerun', () => {
|
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');
|
cy.createFixtureWorkflow('Multiple_trigger_node_rerun.json', 'Multiple trigger node rerun');
|
||||||
|
|
||||||
workflowPage.getters.zoomToFitButton().click();
|
workflowPage.getters.zoomToFitButton().click();
|
||||||
|
|||||||
Reference in New Issue
Block a user