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); }); });