mirror of
https://github.com/yjs/yjs.git
synced 2025-12-16 19:57:45 +01:00
[skip allowed struct in yjs] fixed all tests
This commit is contained in:
@@ -92,11 +92,11 @@ export const removeRangesFromStructSet = (ss, exclude) => {
|
||||
for (let i = 0; i < idranges.length; i++) {
|
||||
const range = idranges[i]
|
||||
let startIndex = 0
|
||||
let endIndex = structs.length
|
||||
if (range.clock >= lastStruct.id.clock + lastStruct.length) continue
|
||||
if (range.clock > firstStruct.id.clock) {
|
||||
startIndex = findIndexCleanStart(null, structs, range.clock)
|
||||
}
|
||||
let endIndex = structs.length // must be set here, after structs is modified
|
||||
if (range.clock + range.len <= firstStruct.id.clock) continue
|
||||
if (range.clock + range.len < lastStruct.id.clock + lastStruct.length) {
|
||||
endIndex = findIndexCleanStart(null, structs, range.clock + range.len)
|
||||
|
||||
@@ -604,7 +604,7 @@ const arrayTransactions = [
|
||||
* @param {t.TestCase} tc
|
||||
*/
|
||||
export const testRepeatGeneratingYarrayTests6 = tc => {
|
||||
applyRandomTests(tc, arrayTransactions, 6*3)
|
||||
applyRandomTests(tc, arrayTransactions, 6)
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user