Skip to content
Closed
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 @@ -15,6 +15,7 @@
import org.eclipse.dirigible.tests.framework.browser.HtmlAttribute;
import org.eclipse.dirigible.tests.framework.browser.HtmlElementType;
import org.eclipse.dirigible.tests.framework.ide.Workbench;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import org.openqa.selenium.By;

Expand All @@ -35,6 +36,7 @@
* This guards against regressions introduced by the {@code bpmn-editor-modernization} branch where
* missing Angular module dependencies silently prevent the editor from bootstrapping.
*/
@Disabled("Subsumed by BpmnEditorIT and BpmnEditorPropertyPopupIT")
public class BpmnEditorLoadsIT extends UserInterfaceIntegrationTest {

private static final String PROJECT_NAME = "BpmnEditorLoadsIT";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,14 @@
import org.eclipse.dirigible.tests.framework.db.DBAsserter;
import org.eclipse.dirigible.tests.framework.ide.DatabasePerspective;
import org.eclipse.dirigible.tests.framework.util.SleepUtil;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;

import java.sql.SQLException;

@Tag("smoke")
@Disabled("Legacy AngularJS perspective; superseded by DatabaseShellIT")
public class DatabasePerspectiveIT extends UserInterfaceIntegrationTest {

private static final String TEST_TABLE_NAME = "STUDENT";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,10 @@
import org.eclipse.dirigible.tests.base.PredefinedProjectIT;
import org.eclipse.dirigible.tests.base.TestProject;
import org.eclipse.dirigible.tests.framework.mail.GreenMailConfig;
import org.junit.jupiter.api.Disabled;
import org.springframework.beans.factory.annotation.Autowired;

@Disabled("Covered by ApproveLeaveRequestBpmIT (same workflow, opposite branch)")
public class DeclineLeaveRequestBpmIT extends PredefinedProjectIT {

static {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,15 @@

import org.eclipse.dirigible.tests.base.PredefinedProjectIT;
import org.eclipse.dirigible.tests.base.TestProject;
import org.junit.jupiter.api.Disabled;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Qualifier;

/**
* Verifies the sales-order "Depends On" cascades against the Alpine.js + Harmonia SPA generated by
* {@code template-application-ui-harmonia-java}.
*/
@Disabled("Redundant with DependsOnHarmoniaIT")
public class DependsOnScenariosHarmoniaIT extends PredefinedProjectIT {

@Autowired
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
import org.eclipse.dirigible.tests.framework.browser.Browser;
import org.eclipse.dirigible.tests.framework.browser.HtmlElementType;
import org.eclipse.dirigible.tests.framework.restassured.RestAssuredExecutor;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;

Expand All @@ -35,6 +36,7 @@
* datasource set the runtime initializes by the time the click happens, so it is deliberately left
* out.
*/
@Disabled("Legacy AngularJS perspective; superseded by MonitoringShellIT")
public class MonitoringPerspectiveIT extends UserInterfaceIntegrationTest {

private static final String PERSPECTIVE_ID = "perspective-monitoring";
Expand Down
Loading