Skip to content

Commit

Permalink
add u.t. for not supported media type
Browse files Browse the repository at this point in the history
  • Loading branch information
krzysztofequativ committed Oct 21, 2024
1 parent fb9b893 commit 9f9c133
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions test/spec/modules/smartadserverBidAdapter_spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -1494,6 +1494,10 @@ describe('Smart bid adapter tests', function () {
};
expect(spec.getBidFloor(bid, 'DKK', VIDEO)).to.deep.eq(2.1);
});

it('should return DEFAULT_FLOOR for not supported media type', () => {
expect(spec.getBidFloor(bid, 'USD', 'test')).to.deep.eq(0);
});
});
});

Expand Down

0 comments on commit 9f9c133

Please sign in to comment.