Files
n8n-enterprise-unlocked/packages/frontend/editor-ui/src/utils/easyAiWorkflowUtils.test.ts
2025-04-14 13:37:50 +02:00

13 lines
333 B
TypeScript

import { describe, it, expect } from 'vitest';
import { getEasyAiWorkflowJson } from './easyAiWorkflowUtils';
describe('getEasyAiWorkflowJson', () => {
it('should return expected easy ai workflow', () => {
const workflow = getEasyAiWorkflowJson();
if (!workflow?.nodes) fail();
expect(workflow).toMatchSnapshot();
});
});