Turn off the tests which check refresh (#15335)

Signed-off-by: Dmytro Nochevnov <dnochevn@redhat.com>
7.20.x
Dmytro Nochevnov 2019-11-27 16:10:06 +02:00 committed by GitHub
parent a461d50914
commit 5179594fb2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 2 deletions

View File

@ -12,6 +12,7 @@
package org.eclipse.che.selenium.workspaces;
import static org.eclipse.che.commons.lang.NameGenerator.generate;
import static org.eclipse.che.selenium.core.TestGroup.UNDER_REPAIR;
import static org.eclipse.che.selenium.pageobject.dashboard.ProjectSourcePage.Template.CONSOLE_JAVA_SIMPLE;
import com.google.inject.Inject;
@ -29,7 +30,11 @@ import org.testng.annotations.AfterClass;
import org.testng.annotations.BeforeClass;
import org.testng.annotations.Test;
/** @author Andrey chizhikov */
/**
* @author Andrey chizhikov TODO turn on the test after https://github.com/eclipse/che/issues/15317
* resolved
*/
@Test(groups = UNDER_REPAIR)
public class ProjectStateAfterRefreshTest {
private static final String WORKSPACE_NAME =
generate(ProjectStateAfterRefreshTest.class.getSimpleName(), 5);

View File

@ -12,6 +12,7 @@
package org.eclipse.che.selenium.workspaces;
import static org.eclipse.che.commons.lang.NameGenerator.generate;
import static org.eclipse.che.selenium.core.TestGroup.UNDER_REPAIR;
import static org.eclipse.che.selenium.pageobject.dashboard.ProjectSourcePage.Template.CONSOLE_JAVA_SIMPLE;
import com.google.inject.Inject;
@ -31,7 +32,11 @@ import org.testng.annotations.AfterClass;
import org.testng.annotations.BeforeClass;
import org.testng.annotations.Test;
/** @author Aleksandr Shmaraev */
/**
* @author Aleksandr Shmaraev TODO turn on the test after
* https://github.com/eclipse/che/issues/15317 resolved
*/
@Test(groups = UNDER_REPAIR)
public class ProjectStateAfterRenameWorkspaceTest {
private static final String WORKSPACE_NAME =
generate(ProjectStateAfterRenameWorkspaceTest.class.getSimpleName(), 5);