From 0ce01ec97125a1c90110e4a6fee1faedb0c5e41f Mon Sep 17 00:00:00 2001 From: shaylevi Date: Mon, 8 Jul 2024 15:06:06 +0300 Subject: [PATCH] vp test: update number of workers --- test/e2e/playwright.config.ts | 2 +- test/e2e/testData/pageLinksData.ts | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/test/e2e/playwright.config.ts b/test/e2e/playwright.config.ts index 8099572d..c4bfcc89 100644 --- a/test/e2e/playwright.config.ts +++ b/test/e2e/playwright.config.ts @@ -14,7 +14,7 @@ export default defineConfig({ /* Retry on CI only */ retries: process.env.CI ? 2 : 0, /* Opt out of parallel tests on CI. */ - workers: 6, + workers: 5, /* Reporter to use. See https://playwright.dev/docs/test-reporters */ reporter: [['list'], ['html', { open: 'never' }]], /* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */ diff --git a/test/e2e/testData/pageLinksData.ts b/test/e2e/testData/pageLinksData.ts index c6ceee8d..422483f8 100644 --- a/test/e2e/testData/pageLinksData.ts +++ b/test/e2e/testData/pageLinksData.ts @@ -4,7 +4,7 @@ type Link = { name: string; endpoint: string }; * Array of all the examples pages names and links. */ export const LINKS: Link[] = [ - //{ name: 'Adaptive Streaming', endpoint: 'adaptive-streaming.html' }, + { name: 'Adaptive Streaming', endpoint: 'adaptive-streaming.html' }, { name: 'AI Highlights Graph', endpoint: 'highlights-graph.html' }, { name: 'Analytics', endpoint: 'analytics.html' }, { name: 'API and Events', endpoint: 'api.html' }, @@ -15,9 +15,9 @@ export const LINKS: Link[] = [ { name: 'Codecs and formats', endpoint: 'codec-formats.html' }, { name: 'Colors API', endpoint: 'colors.html' }, { name: 'Components', endpoint: 'components.html' }, - //{ name: 'Custom Errors', endpoint: 'custom-cld-errors.html' }, + { name: 'Custom Errors', endpoint: 'custom-cld-errors.html' }, { name: 'Display Configurations', endpoint: 'ui-config.html' }, - //{ name: 'Debug mode', endpoint: 'debug.html' }, + { name: 'Debug mode', endpoint: 'debug.html' }, { name: 'ES Module Imports', endpoint: 'es-imports.html' }, { name: 'Floating Player', endpoint: 'floating-player.html' }, { name: 'Fluid Layouts', endpoint: 'fluid.html' }, @@ -36,7 +36,7 @@ export const LINKS: Link[] = [ { name: 'Subtitles & Captions', endpoint: 'subtitles-and-captions.html' }, { name: 'Video Transformations', endpoint: 'transformations.html' }, { name: 'UI Config', endpoint: 'ui-config.html' }, - //{ name: 'VAST & VPAID Support', endpoint: 'vast-vpaid.html' }, + { name: 'VAST & VPAID Support', endpoint: 'vast-vpaid.html' }, { name: 'VR/360 Videos', endpoint: '360.html' }, { name: 'Embedded (iframe) player', endpoint: 'embedded-iframe.html' }, { name: 'ESM Imports', endpoint: 'cld-vp-esm-pages.netlify.app' },