UNPKG

@talend/json-schema-form-core

Version:

JSON-Schema and JSON-UI-Schema utilities for form generation.

9 lines (7 loc) 301 B
import { traverseForm, traverseSchema } from './traverse'; describe('traverse.js', () => { it('should hold functions for applying functions on branches of a json-schema or ui-schema', () => { expect(typeof traverseSchema).toBe('function'); expect(typeof traverseForm).toBe('function'); }); });