(hostname, pathname = '')
| 55 | |
| 56 | // Returns the URL corresponding to the relative path on the pod |
| 57 | resolveUrl (hostname, pathname = '') { |
| 58 | return !this._includeHost |
| 59 | ? `${this._rootUrl}${pathname}` |
| 60 | : `${this._protocol}//${hostname}${this._port}${this._rootUrl}${pathname}` |
| 61 | } |
| 62 | |
| 63 | // Returns the file path corresponding to the relative file path on the pod |
| 64 | resolveFilePath (hostname, filePath = '') { |
no outgoing calls
no test coverage detected