Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Finteza Analytics Adapter: add more information to unit test messages #8467

Merged
merged 1 commit into from
May 24, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions test/spec/modules/fintezaAnalyticsAdapter_spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ describe('finteza analytics adapter', function () {

describe('track', () => {
describe('bid request', () => {
it('builds and sends data', function () {
it('builds and sends request data', function () {
const bidderCode = 'Bidder789';
const pauctionId = '5018eb39-f900-4370-b71e-3bb5b48d324f';

Expand Down Expand Up @@ -95,7 +95,7 @@ describe('finteza analytics adapter', function () {
});

describe('bid response', () => {
it('builds and sends data', function () {
it('builds and sends response data', function () {
const bidderCode = 'Bidder789';
const pauctionId = '5018eb39-f900-4370-b71e-3bb5b48d324f';

Expand Down Expand Up @@ -154,7 +154,7 @@ describe('finteza analytics adapter', function () {
});

describe('bid won', () => {
it('builds and sends data', function () {
it('builds and sends bid won data', function () {
const bidderCode = 'Bidder789';
const pauctionId = '5018eb39-f900-4370-b71e-3bb5b48d324f';

Expand Down Expand Up @@ -194,7 +194,7 @@ describe('finteza analytics adapter', function () {
});

describe('bid timeout', () => {
it('builds and sends data', function () {
it('builds and sends timeout data', function () {
const bidderCode = 'biDDer789';
const pauctionId = '5018eb39-f900-4370-b71e-3bb5b48d324f';

Expand Down