Skip to content

Commit

Permalink
fixes unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
BrettBlox committed Oct 20, 2022
1 parent 19c0da3 commit 7a3f813
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion test/spec/modules/concertBidAdapter_spec.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import { expect } from 'chai';
import sinon from 'sinon';
import { spec } from 'modules/concertBidAdapter.js';
import { getStorageManager } from '../../../src/storageManager.js'
import { getStorageManager } from 'src/storageManager.js'
import { hook } from 'src/hook.js';

describe('ConcertAdapter', function () {
let bidRequests;
Expand All @@ -10,6 +11,10 @@ describe('ConcertAdapter', function () {
let element;
let sandbox;

before(function () {
hook.ready();
});

afterEach(function () {
$$PREBID_GLOBAL$$.bidderSettings = {};
sandbox.restore();
Expand Down

0 comments on commit 7a3f813

Please sign in to comment.