@@ -154,9 +154,7 @@ describe(`UID2 module`, function () {
154154 const getFullTestTitle = ( test ) => `${ test . parent . title ? getFullTestTitle ( test . parent ) + ' | ' : '' } ${ test . title } ` ;
155155
156156 beforeEach ( function ( ) {
157- debugOutput ( `----------------- START TEST ------------------` ) ;
158157 fullTestTitle = getFullTestTitle ( this . test . ctx . currentTest ) ;
159- debugOutput ( fullTestTitle ) ;
160158 testSandbox = sinon . createSandbox ( ) ;
161159 testSandbox . stub ( utils , 'logWarn' ) ;
162160 init ( config ) ;
@@ -169,16 +167,13 @@ describe(`UID2 module`, function () {
169167 testSandbox . restore ( ) ;
170168 if ( timerSpy . timers . length > 0 ) {
171169 if ( clearTimersAfterEachTest ) {
172- debugOutput ( `Cancelling ${ timerSpy . timers . length } still-active timers.` ) ;
173170 timerSpy . clearAllActiveTimers ( ) ;
174171 } else {
175- debugOutput ( `Waiting on ${ timerSpy . timers . length } still-active timers...` , timerSpy . timers ) ;
176172 await timerSpy . waitAllActiveTimers ( ) ;
177173 }
178174 }
179175 cookieHelpers . clearCookies ( moduleCookieName , publisherCookieName ) ;
180176 coreStorage . removeDataFromLocalStorage ( moduleCookieName ) ;
181- debugOutput ( '----------------- END TEST ------------------' ) ;
182177 } ) ;
183178
184179 describe ( 'Configuration' , function ( ) {
@@ -469,7 +464,7 @@ describe(`UID2 module`, function () {
469464 apiHelpers . respondAfterDelay ( 1 , server ) ;
470465
471466 const bid = await runAuction ( ) ;
472- expectOptout ( bid , optoutToken ) ;
467+ expectOptout ( bid ) ;
473468 } ) ;
474469 describe ( `when the response doesn't arrive before the auction timer` , function ( ) {
475470 testApiSuccessAndFailure ( async function ( ) {
0 commit comments