(path: string)
| 115 | } |
| 116 | |
| 117 | function checkFileAccess(path: string) { |
| 118 | if (!isFileLoadingAllowed(vite.config, path)) { |
| 119 | throw new Error( |
| 120 | `Access denied to "${path}". See Vite config documentation for "server.fs": https://vitejs.dev/config/server-options.html#server-fs-strict.`, |
| 121 | ) |
| 122 | } |
| 123 | } |
| 124 | |
| 125 | function canWrite(project: TestProject) { |
| 126 | return ( |
no outgoing calls
no test coverage detected