From 36d3062a421be3f723878e8e19881a10440e14af Mon Sep 17 00:00:00 2001 From: George Kalpakas Date: Wed, 3 Jul 2019 18:37:59 +0300 Subject: [PATCH] ci(docs-infra): increase waiting time to reduce flakiness on CI (#31408) Example failure: https://circleci.com/gh/angular/angular/381763 PR Close #31408 --- .../examples/attribute-directives/e2e/src/app.e2e-spec.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aio/content/examples/attribute-directives/e2e/src/app.e2e-spec.ts b/aio/content/examples/attribute-directives/e2e/src/app.e2e-spec.ts index 00ef4e33c6..019469c338 100644 --- a/aio/content/examples/attribute-directives/e2e/src/app.e2e-spec.ts +++ b/aio/content/examples/attribute-directives/e2e/src/app.e2e-spec.ts @@ -25,8 +25,8 @@ describe('Attribute directives', () => { greenRb.click(); browser.actions().mouseMove(highlightedEle).perform(); - // Wait for up to 2s for the background color to be updated, + // Wait for up to 4s for the background color to be updated, // to account for slow environments (e.g. CI). - browser.wait(() => highlightedEle.getCssValue('background-color').then(c => c === lightGreen), 2000); + browser.wait(() => highlightedEle.getCssValue('background-color').then(c => c === lightGreen), 4000); }); });