Skip to content

Commit 354e137

Browse files
committedOct 27, 2020
test/.lib/createTestDirs.mjs: create deeper dir structure
1 parent 3bc1430 commit 354e137

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed
 

‎test/.lib/createTestDirs.mjs

+3
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,17 @@ export const createTestDirs = id => async () => {
1313
const files = [
1414
path.join(dir, 'test', 'deep', 'test.js'),
1515
path.join(dir, 'test2', 'deep', 'test2.js'),
16+
path.join(dir, 'test2', 'deep', 'deeper', 'deep.js'),
1617
path.join(dir, 'test.js'),
1718
]
1819

1920
await fs.mkdirp(path.join(dir, 'test', 'deep'))
2021
await fs.mkdirp(path.join(dir, 'test2', 'deep'))
22+
await fs.mkdirp(path.join(dir, 'test2', 'deep', 'deeper'))
2123

2224
await Promise.all(files.map(async f => await fs.writeFile(f, 't')))
2325

26+
// delete files after test has run
2427
return async () => {
2528
await fs.rmrf(dir)
2629
}

0 commit comments

Comments
 (0)
Please sign in to comment.