@ionic/core 8.7.11-nightly.20251126 → 8.7.12-dev.11764199266.187e50ad
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -95,6 +95,13 @@ export const setContent = async (page, html, testInfo, options) => {
|
|
|
95
95
|
route.continue();
|
|
96
96
|
}
|
|
97
97
|
});
|
|
98
|
+
/**
|
|
99
|
+
* URL query parameters cause the custom Playwright `page.route`
|
|
100
|
+
* interceptor to fail, which is necessary to inject the test HTML.
|
|
101
|
+
*
|
|
102
|
+
* To avoid this, the final navigation URL is kept simple by using
|
|
103
|
+
* hash params to ensure the route interceptor always works.
|
|
104
|
+
*/
|
|
98
105
|
await page.goto(`${baseUrl}#`, options);
|
|
99
106
|
}
|
|
100
107
|
};
|
package/dist/docs.json
CHANGED