@talend/json-schema-form-core
Version:
JSON-Schema and JSON-UI-Schema utilities for form generation.
11 lines (9 loc) • 351 B
JavaScript
import { name, normalize, parse, stringify } from './sf-path';
describe('sf-path.js', () => {
it('should hold functions for working with object paths and keys', () => {
expect(typeof parse).toBe('function');
expect(typeof stringify).toBe('function');
expect(typeof normalize).toBe('function');
expect(typeof name).toBe('function');
});
});