Skip to content

Commit

Permalink
vp test: update number of workers
Browse files Browse the repository at this point in the history
  • Loading branch information
ShayLevi committed Jul 8, 2024
1 parent 637ed0d commit 0ce01ec
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion test/e2e/playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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. */
Expand Down
8 changes: 4 additions & 4 deletions test/e2e/testData/pageLinksData.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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' },
Expand All @@ -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' },
Expand All @@ -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' },
Expand Down

0 comments on commit 0ce01ec

Please sign in to comment.