You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
describe("Test basic load function for empty working directory",()=>{
27
30
it("shall return a YdsResult object where success is false, element is null, and message is a correct error message string, given an empty working directory path",()=>{
28
31
constresult=load("","");
@@ -184,6 +187,43 @@ describe("Test basic load function for empty element path pointing to an object"
184
187
});
185
188
});
186
189
190
+
describe("Test basic load function for empty element path pointing to an object where object is also the current working directory",()=>{
191
+
afterEach(function(){
192
+
process.chdir(projectRootDir);
193
+
});
194
+
it("shall load object for empty element path",()=>{
0 commit comments