mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-12 07:34:08 -08: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('.isBlank() should work correctly on undefined', () => {
|
||
|
expect(evaluate('={{(undefined).isBlank()}}')).toEqual(true);
|
||
|
});
|
||
|
});
|
||
|
});
|