Add fetch controller tests
This commit is contained in:
parent
56c77dc3f6
commit
12d8d15572
3 changed files with 192 additions and 2 deletions
|
|
@ -167,14 +167,14 @@ export class CursorTracker {
|
|||
continue;
|
||||
}
|
||||
|
||||
if (clientCursors.upToDateness == DocumentUpToDateness.Later) {
|
||||
if (clientCursors.upToDateness === DocumentUpToDateness.Later) {
|
||||
continue;
|
||||
}
|
||||
|
||||
result.push({
|
||||
...clientCursors,
|
||||
isOutdated:
|
||||
clientCursors.upToDateness == DocumentUpToDateness.Prior
|
||||
clientCursors.upToDateness === DocumentUpToDateness.Prior
|
||||
});
|
||||
|
||||
included.add(clientCursors.deviceId);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue