Skip to content

Commit 74f18aa

Browse files
committed
Test Case Updated
1 parent 6ca1eb2 commit 74f18aa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/Unit/fs_dir.test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ describe('File System Testing 🧪', () => {
2020
})
2121

2222
it("Should return directory name", () => {
23-
expect(File_System.dir_name(File_System.path_resolve('./'))).toBe('JCore.FileSystem');
23+
expect(File_System.dir_name(File_System.path_resolve('./'))).toBe('SniperCode.FileSystem');
2424
expect(File_System.dir_name(File_System.path_resolve('./src'))).toBe('src');
2525
})
2626

@@ -49,7 +49,7 @@ describe('File System Testing 🧪', () => {
4949

5050
it("Should return object of dir items in defined depth recursively", () => {
5151
const scan_dir__recursively_depth = File_System.scan_dir_recursive_depth('./', 3);
52-
expect(scan_dir__recursively_depth['JCore.FileSystem'].dir_name).toBe('JCore.FileSystem');
52+
expect(scan_dir__recursively_depth['SniperCode.FileSystem'].dir_name).toBe('SniperCode.FileSystem');
5353
expect(scan_dir__recursively_depth.file.includes(".gitignore")).toBe(true);
5454
})
5555

0 commit comments

Comments
 (0)