()
| 14 | const OUTSIDE_DIR = join(process.cwd(), "test", "_shadow_traversal_outside"); |
| 15 | |
| 16 | async function setup() { |
| 17 | await rm(FIXTURE_DIR, { recursive: true, force: true }); |
| 18 | await rm(OUTSIDE_DIR, { recursive: true, force: true }); |
| 19 | await mkdir(FIXTURE_DIR, { recursive: true }); |
| 20 | await mkdir(OUTSIDE_DIR, { recursive: true }); |
| 21 | } |
| 22 | |
| 23 | async function cleanup() { |
| 24 | await rm(FIXTURE_DIR, { recursive: true, force: true }); |
no outgoing calls
no test coverage detected