first prototype of associative relative positions (left- or right-associative)

This commit is contained in:
Kevin Jahns
2021-01-08 23:03:16 +01:00
parent 728bb6f1b2
commit 656328631c
3 changed files with 54 additions and 19 deletions

View File

@@ -8,6 +8,7 @@ import * as undoredo from './undo-redo.tests.js'
import * as compatibility from './compatibility.tests.js'
import * as doc from './doc.tests.js'
import * as snapshot from './snapshot.tests.js'
import * as relativePositions from './relativePositions.tests.js'
import { runTests } from 'lib0/testing.js'
import { isBrowser, isNode } from 'lib0/environment.js'
@@ -17,7 +18,7 @@ if (isBrowser) {
log.createVConsole(document.body)
}
runTests({
doc, map, array, text, xml, encoding, undoredo, compatibility, snapshot
doc, map, array, text, xml, encoding, undoredo, compatibility, snapshot, relativePositions
}).then(success => {
/* istanbul ignore next */
if (isNode) {