Skip to content
This repository has been archived by the owner on Mar 17, 2021. It is now read-only.

Workaround for importing project #1257

Merged
merged 1 commit into from
Feb 22, 2019
Merged
Show file tree
Hide file tree
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 @@ -43,6 +43,9 @@ public void checkWorkspace(TestWorkspace workspace) throws Exception {
ide.waitOpenedWorkspaceIsReadyToUse();
projectExplorer.waitProjectExplorer();
notificationsPopupPanel.waitProgressPopupPanelClose();
// refreshing project to workaround issue
// https://github.com/openshiftio/openshift.io/issues/4695
projectExplorer.clickOnRefreshTreeButton();
} catch (ExecutionException | InterruptedException e) {
LOG.error(
"Could not obtain workspace name and id - worskape was probably not successfully injected.");
Expand Down
5 changes: 4 additions & 1 deletion functional-tests/src/test/resources/suites/prcheck.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,11 @@

<test name="all">
<classes>
<class name="com.redhat.che.functional.tests.WorkspaceTest"/>
<!-- temporary changes to check if workaround works -->
<!-- <class name="com.redhat.che.functional.tests.WorkspaceTest"/> -->
<class name="com.redhat.che.functional.tests.BuildAndRunProjectTest"/>
<class name="com.redhat.che.functional.tests.BayesianPomXml"/>
<class name="com.redhat.che.functional.tests.BayesianPackageJson"/>
</classes>
</test>
</suite>