Skip to content

Commit

Permalink
Test
Browse files Browse the repository at this point in the history
  • Loading branch information
timdp committed Feb 24, 2021
1 parent 03989cc commit 695a74f
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions test/unit/creative/companion-ads.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,15 @@ describe('CompanionAds', () => {
})
})

describe('#xmlElement', () => {
it('sets xmlElement', () => {
const inst = createInstance()
const value = {}
inst.xmlElement = value
expect(inst.xmlElement).to.equal(value)
})
})

describe('#$type', () => {
it('is CompanionAds', () => {
const inst = createInstance()
Expand Down

0 comments on commit 695a74f

Please sign in to comment.