File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -15,7 +15,9 @@ test("Create an account", async ({ page }) => {
1515 await page . getByLabel ( "Project name" ) . type ( "Test Project" ) ;
1616 await page . getByRole ( "button" , { name : "Create" } ) . click ( ) ;
1717
18- await expect ( page . locator ( "h1" ) . filter ( { hasText : / ^ J o b s $ / } ) ) . toBeVisible ( ) ;
18+ await expect (
19+ page . locator ( "h1" ) . filter ( { hasText : / ^ C h o o s e a f r a m e w o r k t o g e t s t a r t e d / } )
20+ ) . toBeVisible ( ) ;
1921} ) ;
2022
2123test ( "Verify jobs from the test nextjs project" , async ( { page } ) => {
@@ -26,7 +28,9 @@ test("Verify jobs from the test nextjs project", async ({ page }) => {
2628 await page . getByRole ( "button" , { name : "Send a magic link" } ) . click ( ) ;
2729
2830 await page . getByRole ( "link" , { name : / T e s t P r o j e c t / } ) . click ( ) ;
29- await expect ( page . locator ( "h1" ) . filter ( { hasText : / ^ J o b s $ / } ) ) . toBeVisible ( ) ;
31+ await expect (
32+ page . locator ( "h1" ) . filter ( { hasText : / ^ C h o o s e a f r a m e w o r k t o g e t s t a r t e d / } )
33+ ) . toBeVisible ( ) ;
3034
3135 await page . getByRole ( "link" , { name : "Environments & API Keys" } ) . click ( ) ;
3236 await expect ( page . locator ( "h1" ) . filter ( { hasText : "Environments & API Keys" } ) ) . toBeVisible ( ) ;
You can’t perform that action at this time.
0 commit comments