Skip to content

Commit

Permalink
chore: fixup deprecation-removed test variants (#9677)
Browse files Browse the repository at this point in the history
* chore: fixup TODO tests

* fix todo test
  • Loading branch information
runspired authored and gitKrystan committed Feb 11, 2025
1 parent 0317a25 commit 9f980dd
Show file tree
Hide file tree
Showing 2 changed files with 421 additions and 182 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ function count(label: string) {
globalThis.counts = globalThis.counts || {};
// @ts-expect-error
// eslint-disable-next-line
wglobalThis.counts[label] = (globalThis.counts[label] || 0) + 1;
globalThis.counts[label] = (globalThis.counts[label] || 0) + 1;
}

function _unsubscribe(
Expand Down
Loading

0 comments on commit 9f980dd

Please sign in to comment.