@@ -18,6 +18,23 @@ const expectedFilesRecursive = [
18
18
path . join ( process . cwd ( ) , '.__test__files_recursive' , 'test2' , 'deep' , 'test2.js' ) ,
19
19
]
20
20
21
+ const expectedFilesRecursiveDepth1 = [
22
+ path . join ( process . cwd ( ) , '.__test__files_recursive_depth_1' , 'test.js' ) ,
23
+ ]
24
+
25
+ const expectedFilesRecursiveDepth2 = [
26
+ path . join ( process . cwd ( ) , '.__test__files_recursive_depth_2' , 'test' , 'deep' , 'test.js' ) ,
27
+ path . join ( process . cwd ( ) , '.__test__files_recursive_depth_2' , 'test.js' ) ,
28
+ path . join ( process . cwd ( ) , '.__test__files_recursive_depth_2' , 'test2' , 'deep' , 'test2.js' ) ,
29
+ ]
30
+
31
+ const expectedFilesRecursiveDepth3 = [
32
+ path . join ( process . cwd ( ) , '.__test__files_recursive_depth_3' , 'test' , 'deep' , 'test.js' ) ,
33
+ path . join ( process . cwd ( ) , '.__test__files_recursive_depth_3' , 'test.js' ) ,
34
+ path . join ( process . cwd ( ) , '.__test__files_recursive_depth_3' , 'test2' , 'deep' , 'deeper' , 'deep.js' ) ,
35
+ path . join ( process . cwd ( ) , '.__test__files_recursive_depth_3' , 'test2' , 'deep' , 'test2.js' ) ,
36
+ ]
37
+
21
38
export default [
22
39
{
23
40
fn : async ( ) => await fs . getFiles ( `${ dirName } files_recursive` ) ,
@@ -31,6 +48,24 @@ export default [
31
48
expect : expectedFiles ,
32
49
info : 'finds all files in directory. without recursion.' ,
33
50
} ,
51
+ {
52
+ fn : async ( ) => await fs . getFiles ( `${ dirName } files_recursive_depth_1` , 1 ) ,
53
+ before : createTestDirs ( 'files_recursive_depth_1' ) ,
54
+ expect : expectedFilesRecursiveDepth1 ,
55
+ info : 'finds all files in directory. recursively, but for depth 1' ,
56
+ } ,
57
+ {
58
+ fn : async ( ) => await fs . getFiles ( `${ dirName } files_recursive_depth_2` , 2 ) ,
59
+ before : createTestDirs ( 'files_recursive_depth_2' ) ,
60
+ expect : expectedFilesRecursiveDepth2 ,
61
+ info : 'finds all files in directory. recursively, but for depth 2' ,
62
+ } ,
63
+ {
64
+ fn : async ( ) => await fs . getFiles ( `${ dirName } files_recursive_depth_3` , 3 ) ,
65
+ before : createTestDirs ( 'files_recursive_depth_3' ) ,
66
+ expect : expectedFilesRecursiveDepth3 ,
67
+ info : 'finds all files in directory. recursively, but for depth 3' ,
68
+ } ,
34
69
{
35
70
fn : async ( ) => await fs . getFiles ( 'non_existing_path' ) ,
36
71
expect : is . array ,
0 commit comments