(filepath: string)
| 94 | } |
| 95 | |
| 96 | deleteProtectedFiles(filepath: string) { |
| 97 | assertNotTouchingFiles(filepath, 'delete'); |
| 98 | run('sudo', ['rm', '-rf', filepath]); |
| 99 | } |
| 100 | |
| 101 | async readProtectedFile(filepath: string) { |
| 102 | assertNotTouchingFiles(filepath, 'read'); |
nothing calls this directly
no test coverage detected