File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,9 @@ test("Create an account", async ({ page }) => {
15
15
await page . getByLabel ( "Project name" ) . type ( "Test Project" ) ;
16
16
await page . getByRole ( "button" , { name : "Create" } ) . click ( ) ;
17
17
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 ( ) ;
19
21
} ) ;
20
22
21
23
test ( "Verify jobs from the test nextjs project" , async ( { page } ) => {
@@ -26,7 +28,9 @@ test("Verify jobs from the test nextjs project", async ({ page }) => {
26
28
await page . getByRole ( "button" , { name : "Send a magic link" } ) . click ( ) ;
27
29
28
30
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 ( ) ;
30
34
31
35
await page . getByRole ( "link" , { name : "Environments & API Keys" } ) . click ( ) ;
32
36
await expect ( page . locator ( "h1" ) . filter ( { hasText : "Environments & API Keys" } ) ) . toBeVisible ( ) ;
You can’t perform that action at this time.
0 commit comments