Files
Agent-n8n/n8n-n8n-1.109.2/packages/workflow/test/ExpressionExtensions/generic-extensions.test.ts
2025-09-08 04:48:28 +08:00

10 lines
291 B
TypeScript
Executable File

import { evaluate } from './helpers';
describe('Data Transformation Functions', () => {
describe('Genric Data Transformation Functions', () => {
test('.isEmpty() should work correctly on undefined', () => {
expect(evaluate('={{(undefined).isEmpty()}}')).toEqual(true);
});
});
});