File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -21,15 +21,15 @@ test.describe("Homepage", () => {
2121 await expect ( githubLink ) . toHaveAttribute ( "href" , / .+ / ) ;
2222 } ) ;
2323
24- test ( "navigates to example guide" , async ( { page } ) => {
24+ test ( "navigates to getting started guide" , async ( { page } ) => {
2525 await page . goto ( "/" ) ;
2626
27- // Find and click the Example Guide link
28- const guideLink = page . getByRole ( "link" , { name : / e x a m p l e g u i d e / i } ) ;
27+ // Find and click the Getting started link
28+ const guideLink = page . getByRole ( "link" , { name : / g e t t i n g s t a r t e d / i } ) ;
2929 await guideLink . click ( ) ;
3030
3131 // Verify navigation occurred
32- await expect ( page ) . toHaveURL ( / \/ g u i d e s \/ e x a m p l e / ) ;
32+ await expect ( page ) . toHaveURL ( / \/ g u i d e s \/ g e t t i n g - s t a r t e d / ) ;
3333 } ) ;
3434
3535 test ( "is responsive on mobile" , async ( { page } ) => {
You can’t perform that action at this time.
0 commit comments