mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-09 22:24:05 -08:00
36 lines
1 KiB
TypeScript
36 lines
1 KiB
TypeScript
import { WorkflowsPage } from '../pages';
|
|
|
|
const workflowsPage = new WorkflowsPage();
|
|
|
|
describe('n8n.io iframe', () => {
|
|
describe('when telemetry is disabled', () => {
|
|
it('should not load the iframe when visiting /home/workflows', () => {
|
|
cy.overrideSettings({ telemetry: { enabled: false } });
|
|
|
|
cy.visit(workflowsPage.url);
|
|
|
|
cy.get('iframe').should('not.exist');
|
|
});
|
|
});
|
|
|
|
describe('when telemetry is enabled', () => {
|
|
it('should load the iframe when visiting /home/workflows', () => {
|
|
const testInstanceId = 'test-instance-id';
|
|
|
|
cy.overrideSettings({ telemetry: { enabled: true }, instanceId: testInstanceId });
|
|
|
|
const testUserId = Cypress.env('currentUserId');
|
|
|
|
const iframeUrl = `https://n8n.io/self-install?instanceId=${testInstanceId}&userId=${testUserId}`;
|
|
|
|
cy.intercept(iframeUrl, (req) => req.reply(200)).as('iframeRequest');
|
|
|
|
cy.visit(workflowsPage.url);
|
|
|
|
cy.get('iframe').should('exist').and('have.attr', 'src', iframeUrl);
|
|
|
|
cy.wait('@iframeRequest').its('response.statusCode').should('eq', 200);
|
|
});
|
|
});
|
|
});
|