diff options
author | Luca Casonato <lucacasonato@yahoo.com> | 2021-03-12 21:23:59 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-12 21:23:59 +0100 |
commit | 0770449c938cdd0edbadaf1e87e460b21fc1b4ef (patch) | |
tree | 649807f55ed9e03f1d1cd5291295e8d4ff5345da /op_crates/fetch/03_dom_iterable.js | |
parent | e83ff62ccbe33ad9c19cb9cab9154b6767d6d74b (diff) |
refactor: move Console to op_crates/console (#9770)
Diffstat (limited to 'op_crates/fetch/03_dom_iterable.js')
-rw-r--r-- | op_crates/fetch/03_dom_iterable.js | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/op_crates/fetch/03_dom_iterable.js b/op_crates/fetch/03_dom_iterable.js index 2e9f6d3ea..2a3c72fba 100644 --- a/op_crates/fetch/03_dom_iterable.js +++ b/op_crates/fetch/03_dom_iterable.js @@ -3,7 +3,6 @@ ((window) => { const { requiredArguments } = window.__bootstrap.fetchUtil; - // const { exposeForTest } = window.__bootstrap.internals; function DomIterableMixin( Base, @@ -70,7 +69,10 @@ return DomIterable; } - // exposeForTest("DomIterableMixin", DomIterableMixin); + window.__bootstrap.internals = { + ...window.__bootstrap.internals ?? {}, + DomIterableMixin, + }; window.__bootstrap.domIterable = { DomIterableMixin, |