diff --git a/src/tests_basic/resources/publisher/index.html b/src/tests_basic/resources/publisher/index.html
index c2a1f81..9082ca7 100644
--- a/src/tests_basic/resources/publisher/index.html
+++ b/src/tests_basic/resources/publisher/index.html
@@ -21,7 +21,8 @@
run ad auction
'https://localhost:8081': {
contextualBidRequestId: 'abc'
}
- }
+ },
+ resolveToConfig: true,
});
console.log("winning url " + ar);
const adDiv = document.getElementById('ad');
@@ -30,8 +31,7 @@ run ad auction
adDiv.appendChild(document.createTextNode("No turtledove winner"));
} else {
const fframe = document.createElement('fencedframe');
- fframe.setAttribute('mode', 'opaque-ads');
- fframe.setAttribute('src', ar);
+ fframe.config = ar;
fframe.setAttribute('style', 'width: 100px; height: 100px');
adDiv.appendChild(fframe);
}
@@ -49,4 +49,4 @@ Hello!