Skip to content

Commit

Permalink
Brid player fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
grajzer committed May 19, 2023
1 parent 4dec4ce commit f42b8b2
Showing 1 changed file with 11 additions and 7 deletions.
18 changes: 11 additions & 7 deletions extensions/amp-brid-player/0.1/test/test-amp-brid-player.js
Original file line number Diff line number Diff line change
Expand Up @@ -165,13 +165,17 @@ describes.realWin(
});

it('config is passed', () => {
return getBridPlayer({
'data-partner': '264',
'data-player': '4144',
'data-video': '13663',
}, null, {
'debug': 1
}).then((bc) => {
return getBridPlayer(
{
'data-partner': '264',
'data-player': '4144',
'data-video': '13663',
},
null,
{
'debug': 1,
}
).then((bc) => {
const iframe = bc.querySelector('iframe');
expect(iframe).to.not.be.null;
expect(iframe.tagName).to.equal('IFRAME');
Expand Down

0 comments on commit f42b8b2

Please sign in to comment.