Files
n8n-enterprise-unlocked/packages/workflow/test/ExpressionExtensions/generic-extensions.test.ts
कारतोफ्फेलस्क्रिप्ट™ 3a2a70f193 chore: Enfore consistent file-name casing on all backend packages (#15755)
2025-05-27 16:45:50 +02:00

10 lines
291 B
TypeScript

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);
});
});
});