mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-16 17:46:45 +00:00
73 lines
2.2 KiB
TypeScript
73 lines
2.2 KiB
TypeScript
import { overrideFeatureFlag } from '../composables/featureFlags';
|
|
import { openNodeCreator, searchBar } from '../composables/nodeCreator';
|
|
import { addNodeToCanvas, navigateToNewWorkflowPage } from '../composables/workflow';
|
|
|
|
describe('RAG callout experiment', () => {
|
|
describe('NDV callout', () => {
|
|
it('should not show callout if experiment is control', () => {
|
|
overrideFeatureFlag('033_rag_template', 'control');
|
|
|
|
navigateToNewWorkflowPage();
|
|
|
|
addNodeToCanvas('Zep Vector Store', true, true, 'Add documents to vector store');
|
|
|
|
cy.contains('Tip: Get a feel for vector stores in n8n with our').should('not.exist');
|
|
});
|
|
|
|
it('should callout is variant and open on click', () => {
|
|
cy.intercept('workflows/templates/rag-starter-template?fromJson=true');
|
|
overrideFeatureFlag('033_rag_template', 'variant');
|
|
|
|
navigateToNewWorkflowPage();
|
|
|
|
addNodeToCanvas('Zep Vector Store', true, true, 'Add documents to vector store');
|
|
|
|
cy.contains('Tip: Get a feel for vector stores in n8n with our').should('exist');
|
|
|
|
let openedUrl = '';
|
|
cy.window().then((win) => {
|
|
cy.stub(win, 'open').callsFake((url) => {
|
|
openedUrl = url;
|
|
});
|
|
});
|
|
cy.contains('RAG starter template').click();
|
|
cy.then(() => cy.visit(openedUrl));
|
|
|
|
cy.url().should('include', '/workflows/templates/rag-starter-template?fromJson=true');
|
|
});
|
|
});
|
|
describe('search callout', () => {
|
|
it('should not show callout if experiment is control', () => {
|
|
overrideFeatureFlag('033_rag_template', 'control');
|
|
|
|
navigateToNewWorkflowPage();
|
|
|
|
openNodeCreator();
|
|
searchBar().type('rag');
|
|
|
|
cy.contains('RAG starter template').should('not.exist');
|
|
});
|
|
|
|
it('should should callout is variant and open on click', () => {
|
|
cy.intercept('workflows/templates/rag-starter-template?fromJson=true');
|
|
overrideFeatureFlag('033_rag_template', 'variant');
|
|
|
|
navigateToNewWorkflowPage();
|
|
|
|
openNodeCreator();
|
|
searchBar().type('rag');
|
|
|
|
let openedUrl = '';
|
|
cy.window().then((win) => {
|
|
cy.stub(win, 'open').callsFake((url) => {
|
|
openedUrl = url;
|
|
});
|
|
});
|
|
cy.contains('RAG starter template').should('exist').click();
|
|
cy.then(() => cy.visit(openedUrl));
|
|
|
|
cy.url().should('include', '/workflows/templates/rag-starter-template?fromJson=true');
|
|
});
|
|
});
|
|
});
|