zod-error
Version:
Utilities to format and customize Zod error messages
12 lines (11 loc) • 565 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const _1 = require(".");
const path = ['car', 'wheels', 1];
test('a zod path is converted to a breadcrumbs path with default options', () => expect((0, _1.getBreadcrumbs)(path, { enabled: true, type: 'breadcrumbs' })).toBe('car > wheels > [1]'));
test('a zod path is converted to a breadcrumbs path with custom options', () => expect((0, _1.getBreadcrumbs)(path, {
enabled: true,
type: 'breadcrumbs',
arraySquareBrackets: false,
delimeter: '#',
})).toBe('car#wheels#1'));