Skip to content

Commit

Permalink
Fix CI failure
Browse files Browse the repository at this point in the history
  • Loading branch information
devleejb committed Nov 5, 2024
1 parent 1b27196 commit 35262cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/sdk/test/unit/document/document_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1505,7 +1505,7 @@ describe.sequential('Document', function () {
const eventCollector = new EventCollector<number>();
d2.subscribe((event) => {
if (event.type === DocEventType.Snapshot) {
eventCollector.add(d2.getRoot().counter.getValue());
eventCollector.add(d2.getRoot().counter.getValue() as number);
}
});

Expand Down

0 comments on commit 35262cd

Please sign in to comment.