@@ -101,7 +101,7 @@ describe('ColossussspAdapter', function () {
101
101
let placements = data [ 'placements' ] ;
102
102
for ( let i = 0 ; i < placements . length ; i ++ ) {
103
103
let placement = placements [ i ] ;
104
- expect ( placement ) . to . have . all . keys ( 'placementId' , 'groupId' , 'eids' , 'bidId' , 'traffic' , 'sizes' , 'schain' , 'floor' , 'gpid' ) ;
104
+ expect ( placement ) . to . have . all . keys ( 'placementId' , 'groupId' , 'eids' , 'bidId' , 'traffic' , 'sizes' , 'schain' , 'floor' , 'gpid' , 'tid' ) ;
105
105
expect ( placement . schain ) . to . be . an ( 'object' )
106
106
expect ( placement . placementId ) . to . be . a ( 'number' ) ;
107
107
expect ( placement . groupId ) . to . be . a ( 'number' ) ;
@@ -110,6 +110,7 @@ describe('ColossussspAdapter', function () {
110
110
expect ( placement . sizes ) . to . be . an ( 'array' ) ;
111
111
expect ( placement . floor ) . to . be . an ( 'object' ) ;
112
112
expect ( placement . gpid ) . to . be . an ( 'string' ) ;
113
+ expect ( placement . tid ) . to . be . an ( 'string' ) ;
113
114
}
114
115
} ) ;
115
116
@@ -143,7 +144,7 @@ describe('ColossussspAdapter', function () {
143
144
let placement = placements [ i ] ;
144
145
expect ( placement ) . to . have . all . keys ( 'placementId' , 'groupId' , 'eids' , 'bidId' , 'traffic' , 'schain' , 'floor' , 'gpid' , 'sizes' ,
145
146
'playerSize' , 'minduration' , 'maxduration' , 'mimes' , 'protocols' , 'startdelay' , 'placement' , 'skip' , 'skipafter' ,
146
- 'minbitrate' , 'maxbitrate' , 'delivery' , 'playbackmethod' , 'api' , 'linearity'
147
+ 'minbitrate' , 'maxbitrate' , 'delivery' , 'playbackmethod' , 'api' , 'linearity' , 'tid'
147
148
) ;
148
149
expect ( placement . schain ) . to . be . an ( 'object' )
149
150
expect ( placement . placementId ) . to . be . a ( 'number' ) ;
@@ -155,6 +156,7 @@ describe('ColossussspAdapter', function () {
155
156
expect ( placement . playerSize ) . to . be . an ( 'array' ) ;
156
157
expect ( placement . minduration ) . to . be . an ( 'number' ) ;
157
158
expect ( placement . maxduration ) . to . be . an ( 'number' ) ;
159
+ expect ( placement . tid ) . to . be . an ( 'string' ) ;
158
160
}
159
161
} ) ;
160
162
0 commit comments