From 6d7a9c8952235c27237e4717ae8f5d20bdde4d2e Mon Sep 17 00:00:00 2001 From: Carolina Wright Date: Wed, 6 Oct 2021 18:52:31 -0300 Subject: [PATCH] test: increase timeout --- test/api-console-documentation.test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/api-console-documentation.test.js b/test/api-console-documentation.test.js index 45105ebfd..a41c39edb 100644 --- a/test/api-console-documentation.test.js +++ b/test/api-console-documentation.test.js @@ -54,7 +54,7 @@ describe('API Console documentation', () => { it(`should render basic summary documentation`, async () => { const summaryShadowRoot = documentationSummary(element).shadowRoot; const title = summaryShadowRoot.querySelector('.api-title').innerText; - await aTimeout(200); + await aTimeout(300); assert.equal(title.trim(), 'API title: Google Drive') const version = summaryShadowRoot.querySelector('.inline-description.version').innerText; await aTimeout(200); @@ -73,7 +73,7 @@ describe('API Console documentation', () => { const documentation = documentationSummary(element); const summaryShadowRoot = documentation.shadowRoot; const endpointsSection = summaryShadowRoot.querySelector('.toc'); - await aTimeout(200); + await aTimeout(300); assert.ok(endpointsSection) const endpoints = summaryShadowRoot.querySelectorAll('.endpoint-item');