diff --git a/projects/demo-playwright/utils/is-flaky-examples.ts b/projects/demo-playwright/utils/is-flaky-examples.ts index f739629967ce1..bdcd3e66821aa 100644 --- a/projects/demo-playwright/utils/is-flaky-examples.ts +++ b/projects/demo-playwright/utils/is-flaky-examples.ts @@ -1,6 +1,7 @@ import {DemoRoute} from '@demo/routes'; const FLAKY_EXAMPLES = new Map([ + [DemoRoute.AppBar, [0]], // Flaky in safari, need to investigate a problem [ DemoRoute.Carousel, [ @@ -15,7 +16,6 @@ const FLAKY_EXAMPLES = new Map([ [DemoRoute.TabBar, [3]], // Imitating server response (timer(3000)) [DemoRoute.Table, [3, 4]], // Imitating server response (delay(3000)) and virtual scroll [DemoRoute.Tiles, [0]], // YouTube iframe player - [DemoRoute.AppBar, [0]], // Flaky in safari, need to investigate a problem ]); export function tuiIsFlakyExample(path: string, exampleIndex: number): boolean {