mirror of
https://github.com/n8n-io/n8n.git
synced 2026-05-23 04:45:21 +02: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);
|
|
});
|
|
});
|
|
});
|