Skip to content

Commit

Permalink
revertme! despair
Browse files Browse the repository at this point in the history
Signed-off-by: Paul Maréchal <[email protected]>
  • Loading branch information
paul-marechal committed Jan 11, 2019
1 parent ef7f1cd commit 7317437
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ build_script:
- yarn

test_script:
- yarn run test
- yarn run test:browser

notifications:
- provider: Webhook
Expand Down
6 changes: 5 additions & 1 deletion examples/browser/test/main-page/main-page.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,11 @@ export class MainPage {
}

waitForStartup(): void {
this.driver.waitUntil(() => !this.driver.isExisting('.theia-preload'));
this.driver.waitUntil(() => {
const exists = this.driver.isExisting('.theia-preload');
console.log('EXISTS?', exists);
return !exists;
}, undefined, 'IS THIS THE ISSUE?');
}

mainContentPanelExists(): boolean {
Expand Down

0 comments on commit 7317437

Please sign in to comment.