Skip to content

Commit 41570df

Browse files
committed
Fix format
1 parent 6f63086 commit 41570df

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

e2e/hero-header.spec.ts

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,9 @@ test.describe('Test Hero Header Navigation Links', () => {
3131
]);
3232
await newPage.waitForLoadState('load');
3333
// Accept bit.ly shortlink, docs.google.com, or forms.gle redirect destinations
34-
expect(newPage.url()).toMatch(/^(https:\/\/)?(bit\.ly|docs\.google\.com|forms\.gle)/);
34+
expect(newPage.url()).toMatch(
35+
/^(https:\/\/)?(bit\.ly|docs\.google\.com|forms\.gle)/
36+
);
3537
});
3638

3739
test('Join ReactDevsKe link should open google form in new tab', async ({
@@ -45,6 +47,8 @@ test.describe('Test Hero Header Navigation Links', () => {
4547
]);
4648
await newPage.waitForLoadState('load');
4749
// Accept bit.ly shortlink, docs.google.com, or forms.gle redirect destinations
48-
expect(newPage.url()).toMatch(/^(https:\/\/)?(bit\.ly|docs\.google\.com|forms\.gle)/);
50+
expect(newPage.url()).toMatch(
51+
/^(https:\/\/)?(bit\.ly|docs\.google\.com|forms\.gle)/
52+
);
4953
});
5054
});

0 commit comments

Comments
 (0)