Skip to content

Commit

Permalink
fix: E2E
Browse files Browse the repository at this point in the history
  • Loading branch information
tsi committed Feb 12, 2025
1 parent ef67fe1 commit 23c2bc3
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion test/e2e/specs/ESM/linksConsoleErrorsEsmPage.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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);
});
Expand Down
1 change: 0 additions & 1 deletion test/e2e/testData/pageLinksData.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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' },
Expand Down

0 comments on commit 23c2bc3

Please sign in to comment.