Skip to content

Commit

Permalink
fix(tests): increase timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
manucorporat committed May 29, 2019
1 parent bc5bbdb commit d8bec5a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 0 additions & 2 deletions test/karma/test-app/components.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -782,8 +782,6 @@ declare global {
'tag-3d-component': HTMLTag3dComponentElement;
'tag-88': HTMLTag88Element;
}

interface ElementTagNameMap extends HTMLElementTagNameMap {}
}

declare namespace LocalJSX {
Expand Down
4 changes: 2 additions & 2 deletions test/karma/test-app/util.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ export function setupDomTests(document: Document) {
window.removeEventListener('stencil_appload', appLoad);
setTimeout(() => {
resolve(app);
}, 200);
}, 400);
}

window.addEventListener('stencil_appload', appLoad);
Expand Down Expand Up @@ -143,7 +143,7 @@ export function setupDomTests(document: Document) {
/**
* Wait for the component to asynchronously update
*/
export function waitForChanges(timeout = 150) {
export function waitForChanges(timeout = 250) {
const win = window as any;

return new Promise(resolve => {
Expand Down

0 comments on commit d8bec5a

Please sign in to comment.