Files
yjs/tests/encoding.tests.js

29 lines
787 B
JavaScript
Raw Normal View History

2019-04-07 23:08:08 +02:00
import * as t from 'lib0/testing.js'
import {
contentRefs,
readContentBinary,
readContentDeleted,
readContentString,
readContentJSON,
readContentEmbed,
readContentType,
2019-08-09 01:15:33 +02:00
readContentFormat,
readContentAny
2019-04-07 23:08:08 +02:00
} from '../src/internals.js'
/**
* @param {t.TestCase} tc
*/
export const testStructReferences = tc => {
2019-08-09 01:15:33 +02:00
t.assert(contentRefs.length === 9)
t.assert(contentRefs[1] === readContentDeleted)
2019-08-09 01:15:33 +02:00
t.assert(contentRefs[2] === readContentJSON) // TODO: deprecate content json?
t.assert(contentRefs[3] === readContentBinary)
t.assert(contentRefs[4] === readContentString)
t.assert(contentRefs[5] === readContentEmbed)
t.assert(contentRefs[6] === readContentFormat)
t.assert(contentRefs[7] === readContentType)
2019-08-09 01:15:33 +02:00
t.assert(contentRefs[8] === readContentAny)
2019-04-07 23:08:08 +02:00
}