* Makes a directory in the TestSandbox * * @param dir - Name of directory to create (relative to TestSandbox path)
(dir: string)
| 120 | * @param dir - Name of directory to create (relative to TestSandbox path) |
| 121 | */ |
| 122 | async mkdir(dir: string): Promise<void> { |
| 123 | await ensureDir(resolve(this.path, dir)); |
| 124 | } |
| 125 | |
| 126 | /** |
| 127 | * Copies a file from src to the TestSandbox. If copying a `.js` file which |
no test coverage detected