Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,13 @@ public void run() {
SwtBotTreeUtilities.waitUntilTreeHasItems(bot, launchTree);
SWTBotTreeItem[] allItems = launchTree.getAllItems();
SwtBotTreeUtilities.waitUntilTreeHasText(bot, allItems[0]);

// Log debug info for https://github.com/GoogleCloudPlatform/google-cloud-eclipse/issues/1897
if (!allItems[0].getText().contains("App Engine Standard at localhost")) {
for (SWTBotTreeItem treeItem : allItems) {
System.out.println(" [GitHub #1897 debug info] " + treeItem);
}
}
assertTrue("No App Engine launch found",
allItems[0].getText().contains("App Engine Standard at localhost"));

Expand Down Expand Up @@ -149,7 +156,7 @@ private void assertNoService(URL url) {

/**
* Read the content as a string from the specified URL.
*
*
* @throws IOException if cannot connect or timeout
*/
private static String getUrlContents(URL url, int timeoutInMilliseconds) throws IOException {
Expand Down