Skip to content

Commit

Permalink
feat(): ExcoBidAdapter trigger e2e tests
Browse files Browse the repository at this point in the history
  • Loading branch information
pb-pete committed Feb 26, 2025
1 parent ba6d594 commit eb6e533
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/excoBidAdapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -213,8 +213,8 @@ export const spec = {
isBidRequestValid: function (bid) {
const props = ['accountId', 'publisherId', 'tagId'];
const missing = props.filter(prop => !bid.params[prop]);
const existingLegacy = ['cId', 'pId'].filter(prop => bid.params[prop]);
const nonStr = props.filter(prop => !isStr(bid.params[prop]));
const existingLegacy = ['cId', 'pId'].filter(prop => bid.params[prop]);
const message = `Bid will not be sent for ad unit '${bid.adUnitCode}'`;
const suggestion = 'wrap it in quotes in your config';

Expand Down

0 comments on commit eb6e533

Please sign in to comment.