diff --git a/tests/jballerina-debugger-integration-test/src/test/java/org/ballerinalang/debugger/test/adapter/runinterminal/ProjectBasedRunInTerminalTest.java b/tests/jballerina-debugger-integration-test/src/test/java/org/ballerinalang/debugger/test/adapter/runinterminal/ProjectBasedRunInTerminalTest.java index f1fb254bf054..691b9b51bb47 100644 --- a/tests/jballerina-debugger-integration-test/src/test/java/org/ballerinalang/debugger/test/adapter/runinterminal/ProjectBasedRunInTerminalTest.java +++ b/tests/jballerina-debugger-integration-test/src/test/java/org/ballerinalang/debugger/test/adapter/runinterminal/ProjectBasedRunInTerminalTest.java @@ -21,7 +21,6 @@ import org.ballerinalang.debugger.test.utils.DebugUtils; import org.ballerinalang.test.context.BallerinaTestException; import org.testng.Assert; -import org.testng.SkipException; import org.testng.annotations.AfterMethod; import org.testng.annotations.BeforeMethod; import org.testng.annotations.Test; @@ -43,12 +42,6 @@ public void setup() { @Test(description = "Debug launch test in integrated terminal for project based source") public void testRunInIntegratedTerminal() throws BallerinaTestException { - // Skipping the test on Windows - // TODO: enable after fixing intermittent failures - if (System.getProperty("os.name").toLowerCase().contains("win")) { - throw new SkipException("Skipping test on Windows OS"); - } - String integratedTerminal = "integrated"; debugTestRunner.setClientSupportsRunInTerminal(true); didRunInIntegratedTerminal = debugTestRunner.initDebugSession(DebugUtils.DebuggeeExecutionKind.RUN, @@ -58,12 +51,6 @@ public void testRunInIntegratedTerminal() throws BallerinaTestException { @Test(description = "Debug launch test in external terminal for project based source") public void testRunInExternalTerminal() throws BallerinaTestException { - // Skipping the test on Windows - // TODO: enable after fixing intermittent failures - if (System.getProperty("os.name").toLowerCase().contains("win")) { - throw new SkipException("Skipping test on Windows OS"); - } - String externalTerminal = "external"; debugTestRunner.setClientSupportsRunInTerminal(true); didRunInIntegratedTerminal = debugTestRunner.initDebugSession(DebugUtils.DebuggeeExecutionKind.RUN, diff --git a/tests/jballerina-debugger-integration-test/src/test/java/org/ballerinalang/debugger/test/adapter/runinterminal/SingleFileRunInTerminalTest.java b/tests/jballerina-debugger-integration-test/src/test/java/org/ballerinalang/debugger/test/adapter/runinterminal/SingleFileRunInTerminalTest.java index 297c67d2a7ce..8529c32a8fa0 100644 --- a/tests/jballerina-debugger-integration-test/src/test/java/org/ballerinalang/debugger/test/adapter/runinterminal/SingleFileRunInTerminalTest.java +++ b/tests/jballerina-debugger-integration-test/src/test/java/org/ballerinalang/debugger/test/adapter/runinterminal/SingleFileRunInTerminalTest.java @@ -22,7 +22,6 @@ import org.ballerinalang.debugger.test.utils.DebugUtils; import org.ballerinalang.test.context.BallerinaTestException; import org.testng.Assert; -import org.testng.SkipException; import org.testng.annotations.AfterMethod; import org.testng.annotations.BeforeMethod; import org.testng.annotations.Test; @@ -31,6 +30,7 @@ * Test class to test the runInTerminal feature for single files. */ public class SingleFileRunInTerminalTest extends BaseTestCase { + DebugTestRunner debugTestRunner; boolean didRunInIntegratedTerminal; @@ -44,12 +44,6 @@ public void setup() { @Test(description = "Debug launch test in integrated terminal for single file") public void testRunInIntegratedTerminal() throws BallerinaTestException { - // Skipping the test on Windows - // TODO: enable after fixing intermittent failures - if (System.getProperty("os.name").toLowerCase().contains("win")) { - throw new SkipException("Skipping test on Windows OS"); - } - String integratedTerminal = "integrated"; debugTestRunner.setClientSupportsRunInTerminal(true); didRunInIntegratedTerminal = debugTestRunner.initDebugSession(DebugUtils.DebuggeeExecutionKind.RUN, @@ -59,12 +53,6 @@ public void testRunInIntegratedTerminal() throws BallerinaTestException { @Test(description = "Debug launch test in external terminal for single file") public void testRunInExternalTerminal() throws BallerinaTestException { - // Skipping the test on Windows - // TODO: enable after fixing intermittent failures - if (System.getProperty("os.name").toLowerCase().contains("win")) { - throw new SkipException("Skipping test on Windows OS"); - } - String externalTerminal = "external"; debugTestRunner.setClientSupportsRunInTerminal(true); didRunInIntegratedTerminal = debugTestRunner.initDebugSession(DebugUtils.DebuggeeExecutionKind.RUN,