Skip to content

Commit

Permalink
Fix indentations in the test
Browse files Browse the repository at this point in the history
  • Loading branch information
AdamWr committed Jul 17, 2023
1 parent 6f3dce4 commit d9e49ed
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions tests/redirects/google-ima3.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -112,8 +112,10 @@ test('Ima - check if google.ima.dai was NOT overwritten', (assert) => {
const AdsLoader = new ima.AdsLoader();
AdsLoader.addEventListener(ima.AdsManagerLoadedEvent.Type.ADS_MANAGER_LOADED, test);

assert.ok(typeof window.google.ima.dai.api.StreamManager === 'function',
'window.google.ima.dai.api.StreamManager was not overwritten');
assert.ok(
typeof window.google.ima.dai.api.StreamManager === 'function',
'window.google.ima.dai.api.StreamManager was not overwritten',
);
AdsLoader.requestAds();
requestAnimationFrame(() => {
assert.strictEqual(number, 1, 'number is equal to 1');
Expand Down

0 comments on commit d9e49ed

Please sign in to comment.