* {{> dontSeeCurrentPathEquals }}
(path)
| 2462 | * {{> dontSeeCurrentPathEquals }} |
| 2463 | */ |
| 2464 | async dontSeeCurrentPathEquals(path) { |
| 2465 | const currentUrl = await this._getPageUrl() |
| 2466 | const baseUrl = this.options.url || 'http://localhost' |
| 2467 | const actualPath = new URL(currentUrl, baseUrl).pathname |
| 2468 | return equals('url path').negate(normalizePath(path), normalizePath(actualPath)) |
| 2469 | } |
| 2470 | |
| 2471 | /** |
| 2472 | * {{> see }} |
nothing calls this directly
no test coverage detected