UNPKG

json-joy

Version:

Collection of libraries for building collaborative editing apps.

40 lines (39 loc) 851 B
const testCases = [ { comment: 'At root, succeeds when value is lower than requested', doc: 123, patch: [ { op: 'less', path: '', value: 124, }, ], expected: 123, }, { comment: 'At root, fails when value is not lower than requested', doc: 123, patch: [ { op: 'less', path: '', value: 123, }, ], error: 'TEST', }, { comment: 'At root, fails when value is not lower than requested - 2', doc: 123, patch: [ { op: 'less', path: '', value: 1, }, ], error: 'TEST', }, ]; export default testCases;