summaryrefslogtreecommitdiff
path: root/op_crates/fetch
diff options
context:
space:
mode:
Diffstat (limited to 'op_crates/fetch')
-rw-r--r--op_crates/fetch/03_dom_iterable.js6
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,