UNPKG

json-joy

Version:

Collection of libraries for building collaborative editing apps.

28 lines (27 loc) 551 B
const testCases = [ { comment: 'Succeeds when target has correct type', doc: {}, patch: [ { op: 'type', path: '', value: 'object', }, ], expected: {}, }, { comment: 'Fails when type does not match', doc: {}, patch: [ { op: 'type', path: '', value: 'number', }, ], error: 'TEST', }, ]; export default testCases;