* Handles the file specified by the given path, preparing it for use with * the current browser. If the path does not refer to a valid file, it will * be returned unchanged, otherwise a path suitable for use with the current * browser will be returned. * * This default implementation
(_driver, path)
| 162 | * @package |
| 163 | */ |
| 164 | handleFile(_driver, path) { |
| 165 | return Promise.resolve(path) |
| 166 | } |
| 167 | } |
| 168 | |
| 169 | /** |
no outgoing calls
no test coverage detected