diff --git a/test/automated/browser/admin.test.js b/test/automated/browser/admin.test.js index a98a08e85..ca8db13c2 100644 --- a/test/automated/browser/admin.test.js +++ b/test/automated/browser/admin.test.js @@ -2,7 +2,7 @@ const listenForErrors = require('./lib/errors.js').listenForErrors; const ADMIN_USERNAME = 'admin'; const ADMIN_PASSWORD = 'abc123'; -describe('Video embed page', () => { +describe('Admin page', () => { beforeAll(async () => { await page.setViewport({ width: 1080, height: 720 }); listenForErrors(browser, page); @@ -24,5 +24,4 @@ describe('Video embed page', () => { it('should have rendered the admin home page', async () => { await page.waitForSelector('.home-container'); }); - }); diff --git a/test/automated/browser/lib/errors.js b/test/automated/browser/lib/errors.js index 3f99ce84a..0f0168f7f 100644 --- a/test/automated/browser/lib/errors.js +++ b/test/automated/browser/lib/errors.js @@ -1,8 +1,5 @@ async function listenForErrors(browser, page) { - const ignoredErrors = [ - 'ERR_ABORTED', - 'MEDIA_ERR_SRC_NOT_SUPPORTED', - ]; + const ignoredErrors = ['ERR_ABORTED', 'MEDIA_ERR_SRC_NOT_SUPPORTED', '404']; // Emitted when the page emits an error event (for example, the page crashes) page.on('error', (error) => { @@ -20,7 +17,9 @@ async function listenForErrors(browser, page) { // Catch all failed requests like 4xx..5xx status codes page.on('requestfailed', (request) => { - const ignoreError = ignoredErrors.some(e => request.failure().errorText.includes(e)); + const ignoreError = ignoredErrors.some((e) => + request.failure().errorText.includes(e) + ); if (!ignoreError) { throw new Error( `❌ url: ${request.url()}, errText: ${ @@ -31,18 +30,17 @@ async function listenForErrors(browser, page) { }); // Listen for console errors in the browser. - page.on('console', msg => { + page.on('console', (msg) => { const type = msg._type; if (type !== 'error') { - return; + return; } - const ignoreError = ignoredErrors.some(e => msg._text.includes(e)); + const ignoreError = ignoredErrors.some((e) => msg._text.includes(e)); if (!ignoreError) { throw new Error(`❌ ${msg._text}`); } -}); - + }); } module.exports.listenForErrors = listenForErrors;