mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-19 11:01:15 +00:00
13 lines
333 B
TypeScript
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();
|
|
});
|
|
});
|