Skip to content

Commit 08595e8

Browse files
committedOct 27, 2020
test/getFiles: test depth parameter until depth 3
1 parent a603e80 commit 08595e8

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed
 

‎test/getFiles.mjs

+35
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,23 @@ const expectedFilesRecursive = [
1818
path.join(process.cwd(), '.__test__files_recursive', 'test2', 'deep', 'test2.js'),
1919
]
2020

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+
2138
export default [
2239
{
2340
fn: async () => await fs.getFiles(`${dirName}files_recursive`),
@@ -31,6 +48,24 @@ export default [
3148
expect: expectedFiles,
3249
info: 'finds all files in directory. without recursion.',
3350
},
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+
},
3469
{
3570
fn: async () => await fs.getFiles('non_existing_path'),
3671
expect: is.array,

0 commit comments

Comments
 (0)
Please sign in to comment.