Skip to content

Commit 6d7a9c8

Browse files
committed
test: increase timeout
1 parent e25c686 commit 6d7a9c8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/api-console-documentation.test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ describe('API Console documentation', () => {
5454
it(`should render basic summary documentation`, async () => {
5555
const summaryShadowRoot = documentationSummary(element).shadowRoot;
5656
const title = summaryShadowRoot.querySelector('.api-title').innerText;
57-
await aTimeout(200);
57+
await aTimeout(300);
5858
assert.equal(title.trim(), 'API title: Google Drive')
5959
const version = summaryShadowRoot.querySelector('.inline-description.version').innerText;
6060
await aTimeout(200);
@@ -73,7 +73,7 @@ describe('API Console documentation', () => {
7373
const documentation = documentationSummary(element);
7474
const summaryShadowRoot = documentation.shadowRoot;
7575
const endpointsSection = summaryShadowRoot.querySelector('.toc');
76-
await aTimeout(200);
76+
await aTimeout(300);
7777
assert.ok(endpointsSection)
7878

7979
const endpoints = summaryShadowRoot.querySelectorAll('.endpoint-item');

0 commit comments

Comments
 (0)