File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments