diff --git a/test/e2e/specs/ESM/linksConsoleErrorsEsmPage.spec.ts b/test/e2e/specs/ESM/linksConsoleErrorsEsmPage.spec.ts index 70b823f4..c6bb512f 100644 --- a/test/e2e/specs/ESM/linksConsoleErrorsEsmPage.spec.ts +++ b/test/e2e/specs/ESM/linksConsoleErrorsEsmPage.spec.ts @@ -25,7 +25,7 @@ for (const link of ESM_LINKS) { */ vpTest('ESM page Link count test', async ({ page }) => { await page.goto(ESM_URL); - const expectedNumberOfLinks = 34; + const expectedNumberOfLinks = 33; const numberOfLinks = await page.getByRole('link').count(); expect(numberOfLinks).toBe(expectedNumberOfLinks); }); diff --git a/test/e2e/testData/pageLinksData.ts b/test/e2e/testData/pageLinksData.ts index 35fcf728..f2141055 100644 --- a/test/e2e/testData/pageLinksData.ts +++ b/test/e2e/testData/pageLinksData.ts @@ -19,7 +19,6 @@ export const LINKS: ExampleLinkType[] = [ { name: ExampleLinkName.CustomErrors, endpoint: 'custom-cld-errors.html' }, { name: ExampleLinkName.DisplayConfigurations, endpoint: 'ui-config.html' }, { name: ExampleLinkName.DebugMode, endpoint: 'debug.html' }, - { name: ExampleLinkName.ESModuleImports, endpoint: 'es-imports.html' }, { name: ExampleLinkName.FloatingPlayer, endpoint: 'floating-player.html' }, { name: ExampleLinkName.FluidLayouts, endpoint: 'fluid.html' }, { name: ExampleLinkName.ForceHLSSubtitles, endpoint: 'force-hls-subtitles-ios.html' },