Skip to content

Commit

Permalink
Update tests
Browse files Browse the repository at this point in the history
  • Loading branch information
axewilledge committed Dec 12, 2023
1 parent 567b3a3 commit 1d98fde
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@ public void packageComponentsTestCase(String[] projects, String expected) throws
List<String> filePaths = new ArrayList<>();
for (String project : projects) {
Path path = configsPath.resolve(project).resolve("main.bal").toAbsolutePath();
TestUtil.openDocument(serviceEndpoint, path);
filePaths.add(path.toString());
}

Expand Down Expand Up @@ -133,7 +132,8 @@ public Object[][] getDataProvider() {
{new String[]{"project", "project-functions", "project-services", "single-file"},
"multiple-packages_expected.json"},
{new String[]{"single-file"}, "single-file-package_expected.json"},
{new String[]{"project-other"}, "project-other_expected.json"}
{new String[]{"project-other"}, "project-other_expected.json"},
{new String[]{"non-exist"}, "project-exception_expected.json"}
};
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"result": []
}

0 comments on commit 1d98fde

Please sign in to comment.