We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9adf598 commit 7a06582Copy full SHA for 7a06582
packages/angular/test/base/e2e/src/lazy/router-link.spec.ts
@@ -6,6 +6,11 @@ function escapeRegExp(string: string): string {
6
return string.replace(/[.*+?^${}()|[\]\\]/g, '\\$&');
7
}
8
9
+// Helper function to escape regex special characters
10
+function escapeRegExp(string: string): string {
11
+ return string.replace(/[.*+?^${}()|[\]\\]/g, '\\$&');
12
+}
13
+
14
test.describe('Router Link', () => {
15
test.beforeEach(async ({ page }) => {
16
await page.goto('/lazy/router-link?ionic:_testing=true');
0 commit comments