Skip to content

Commit

Permalink
MWPW-146230: Fix PR run failures (#314)
Browse files Browse the repository at this point in the history
update console error fixes

Co-authored-by: nateekar <[email protected]>
  • Loading branch information
skumar09 and nateekar committed Apr 8, 2024
1 parent 008fd6a commit f004d1d
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
7 changes: 6 additions & 1 deletion tests/milo/marquee.block.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,12 @@ let marquee;
let consoleErrors = [];

const miloLibs = process.env.MILO_LIBS || '';
const knownConsoleErrors = ['Access-Control-Allow-Origin','Failed to load resource: net::ERR_FAILED','adobeid-na1-stg1.services'];
const knownConsoleErrors = [
'Access-Control-Allow-Origin',
'Failed to load resource: net::ERR_FAILED',
'adobeid-na1-stg1.services',
'Attestation check for Topics',
];

test.describe('Milo Marquee Block test suite', () => {
test.beforeEach(async ({ page }) => {
Expand Down
7 changes: 6 additions & 1 deletion tests/milo/media.block.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,12 @@ let webUtil;
let media;
let consoleErrors = [];
const miloLibs = process.env.MILO_LIBS || '';
const knownConsoleErrors = ['Access-Control-Allow-Origin','Failed to load resource: net::ERR_FAILED','adobeid-na1-stg1.services'];
const knownConsoleErrors = [
'Access-Control-Allow-Origin',
'Failed to load resource: net::ERR_FAILED',
'adobeid-na1-stg1.services',
'Attestation check for Topics',
];

test.describe('Milo Media Block test suite', () => {
test.beforeEach(async ({ page }) => {
Expand Down

0 comments on commit f004d1d

Please sign in to comment.