Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ org.gradle.caching=true
group=io.ballerina
version=1.3.0
name=ballerina-language-server
ballerinaLangVersion=2201.13.0-m3
ballerinaLangVersion=2201.13.0-20251022-094900-1ad796e1

ballerinaGradlePluginVersion=2.3.0
checkStyleToolVersion=10.12.1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,14 +46,15 @@ public void negativeTest(String config) throws IOException, WorkspaceDocumentExc
@Override
public Object[][] dataProvider() {
return new Object[][]{
// TODO: Tracked with: https://github.com/wso2/product-ballerina-integrator/issues/1622
// {"with_config_toml_default_module2.json"},
// {"with_config_toml_default_module3.json"},
// {"with_config_toml_default_module5.json"},
// {"with_config_toml_default_module6.json"},
// {"with_config_toml_non_default_module2.json"},
{"with_config_toml_default_module1.json"},
{"with_config_toml_default_module2.json"},
{"with_config_toml_default_module3.json"},
{"with_config_toml_default_module4.json"},
{"with_config_toml_default_module5.json"},
{"with_config_toml_default_module6.json"},
{"with_config_toml_non_default_module1.json"},
{"with_config_toml_non_default_module2.json"},
{"with_config_toml_non_default_module3.json"},
{"with_config_toml_non_default_module4.json"},
{"with_config_toml_non_default_module5.json"},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,12 @@ public List<String> skipList() {
"conditional_expr_ctx_config12.json", //#34145

// TODO ContextTypeResolver's context type for method call expressions should be revisited
"method_call_expression_ctx_config9.json"
"method_call_expression_ctx_config9.json",

// TODO: Tracked with: https://github.com/wso2/product-ballerina-integrator/issues/1622
"mapping_constructor_expr_ctx_config7.json",
"mapping_constructor_expr_ctx_config8.json",
"mapping_expr_ctx_config37.json"
);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@
import org.testng.annotations.Test;

import java.io.IOException;
import java.util.Arrays;
import java.util.List;

/**
* Record Type Descriptor Context tests.
Expand All @@ -35,6 +37,15 @@ public void test(String config, String configPath) throws WorkspaceDocumentExcep
super.test(config, configPath);
}

@Override
public List<String> skipList() {
// TODO: Tracked with: https://github.com/wso2/product-ballerina-integrator/issues/1622
return Arrays.asList(
"config5.json",
"config7.json"
);
}

@DataProvider(name = "completion-data-provider")
@Override
public Object[][] dataProvider() {
Expand Down
Loading