Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master' into update-fasterxml-ja…
Browse files Browse the repository at this point in the history
…ckson-version
  • Loading branch information
TharmiganK committed Nov 20, 2023
2 parents 2eba740 + 62408d8 commit 45d5e6b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion language-server/modules/langserver-core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ test {
systemProperty "ballerina.home", "$buildDir/"
systemProperty "experimental", "true"
systemProperty "ballerina.version", project.version
systemProperty "responseTimeThreshold", 2000
systemProperty "responseTimeThreshold", 60000
useTestNG() {
suites 'src/test/resources/testng.xml'
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ public void testInitialBreakpointVerification() throws BallerinaTestException {
}

@Test(description = "Test to assert runtime verification on breakpoints which are getting added on-the-fly " +
"during a debug session")
"during a debug session", enabled = false)
public void testOnTheFlyBreakpointVerification() throws BallerinaTestException {
// adds one initial breakpoint and run debug session until the breakpoint is reached.
debugTestRunner.addBreakPoint(new BallerinaTestDebugPoint(debugTestRunner.testEntryFilePath, 27));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public void setup() {
debugTestRunner = new DebugTestRunner(testProjectName, testModuleFileName, true);
}

@Test
@Test(enabled = false)
public void testDebugCompletions() throws BallerinaTestException {
debugTestRunner.addBreakPoint(new BallerinaTestDebugPoint(debugTestRunner.testEntryFilePath, 71));
debugTestRunner.addBreakPoint(new BallerinaTestDebugPoint(debugTestRunner.testEntryFilePath, 79));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public void setup() {
debugTestRunner = new DebugTestRunner(testProjectName, testModuleFileName, true);
}

@Test
@Test(enabled = false)
public void testMultiModuleDebugScenarios() throws BallerinaTestException {
Path filePath1 = debugTestRunner.testProjectPath.resolve("utils.bal");
Path filePath2 = debugTestRunner.testProjectPath.resolve("modules").resolve("math").resolve("add.bal");
Expand Down

0 comments on commit 45d5e6b

Please sign in to comment.