* {{> dontSeeCurrentPathEquals }}
(path)
| 1774 | * {{> dontSeeCurrentPathEquals }} |
| 1775 | */ |
| 1776 | async dontSeeCurrentPathEquals(path) { |
| 1777 | const currentUrl = await this._getPageUrl() |
| 1778 | const baseUrl = this.options.url || 'http://localhost' |
| 1779 | const actualPath = new URL(currentUrl, baseUrl).pathname |
| 1780 | return equals('url path').negate(normalizePath(path), normalizePath(actualPath)) |
| 1781 | } |
| 1782 | |
| 1783 | /** |
| 1784 | * {{> see }} |
no test coverage detected