mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
10 lines
291 B
TypeScript
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);
|
|
});
|
|
});
|
|
});
|