All files / fs / testdata / empty_dir_sync.ts

100.00% Branches 0/0
100.00% Lines 7/7
1
2
3
4
5
6
7
8
9
10
 
x8
 
x8
 
x8
x8
x8
x8
x8








// deno-lint-ignore-file no-console
import { emptyDirSync } from "../empty_dir.ts";

try {
  // Empty testfolder stored in Deno.args where the child.txt is located.
  emptyDirSync(Deno.args[0]!);
  console.log("success");
} catch (error) {
  console.log(error);
}