Skip to content

Commit

Permalink
test: increase timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
carowright committed Oct 7, 2021
1 parent e25c686 commit 6d7a9c8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/api-console-documentation.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand All @@ -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');
Expand Down

0 comments on commit 6d7a9c8

Please sign in to comment.