Skip to content

Commit

Permalink
Merge pull request ballerina-platform#40832 from malinthar/disable-sc…
Browse files Browse the repository at this point in the history
…hema-def-test

Disable bala scheama definition test
  • Loading branch information
malinthar authored Jun 26, 2023
2 parents ce1bec3 + ba1c9d1 commit bbc591e
Showing 1 changed file with 6 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,22 +30,23 @@
* Test goto definition language server feature with bala URI scheme enabled.
*/
public class BalaSchemeDefinitionTest extends DefinitionTest {
@Test(description = "Test goto definitions", dataProvider = "testDataProvider")

@Test(enabled = false, description = "Test goto definitions", dataProvider = "testDataProvider")
public void test(String configPath, String configDir) throws IOException {
super.test(configPath, configDir);
}

@Test(description = "Test goto definitions for standard libs", dataProvider = "testStdLibDataProvider")
@Test(enabled = false, description = "Test goto definitions for standard libs",
dataProvider = "testStdLibDataProvider")
public void testStdLibDefinition(String configPath, String configDir) throws IOException, URISyntaxException {
super.testStdLibDefinition(configPath, configDir);
}

@Test(dataProvider = "testInterStdLibDataProvider")
@Test(enabled = false, dataProvider = "testInterStdLibDataProvider")
public void testInterStdLibDefinition(String configPath, String configDir) throws IOException, URISyntaxException {
super.testInterStdLibDefinition(configPath, configDir);
}

@Override
protected Endpoint getServiceEndpoint() {
return TestUtil.newLanguageServer()
Expand Down

0 comments on commit bbc591e

Please sign in to comment.