@@ -837,7 +837,7 @@ test.describe(`Project management commands`, () => {
837
837
name : 'Submit command' ,
838
838
} )
839
839
const toastMessage = page . getByText ( `Successfully deleted` )
840
- const noProjectsMessage = page . getByText ( 'No Projects found' )
840
+ const noProjectsMessage = page . getByText ( 'No projects found' )
841
841
842
842
await test . step ( `Setup` , async ( ) => {
843
843
await page . setBodyDimensions ( { width : 1200 , height : 500 } )
@@ -949,7 +949,7 @@ test.describe(`Project management commands`, () => {
949
949
name : 'Submit command' ,
950
950
} )
951
951
const toastMessage = page . getByText ( `Successfully deleted` )
952
- const noProjectsMessage = page . getByText ( 'No Projects found' )
952
+ const noProjectsMessage = page . getByText ( 'No projects found' )
953
953
954
954
await test . step ( `Setup` , async ( ) => {
955
955
await page . setBodyDimensions ( { width : 1200 , height : 500 } )
@@ -1265,7 +1265,7 @@ test(
1265
1265
} )
1266
1266
1267
1267
await test . step ( 'Check that the home page is empty' , async ( ) => {
1268
- await expect ( page . getByText ( 'No Projects found' ) ) . toBeVisible ( )
1268
+ await expect ( page . getByText ( 'No projects found' ) ) . toBeVisible ( )
1269
1269
} )
1270
1270
1271
1271
await test . step ( 'Check we can still create a project' , async ( ) => {
@@ -1434,8 +1434,8 @@ test(
1434
1434
// Constants and locators
1435
1435
const projectLinks = page . getByTestId ( 'project-link' )
1436
1436
1437
- // expect to see text "No Projects found"
1438
- await expect ( page . getByText ( 'No Projects found' ) ) . toBeVisible ( )
1437
+ // expect to see text "No projects found"
1438
+ await expect ( page . getByText ( 'No projects found' ) ) . toBeVisible ( )
1439
1439
1440
1440
await createProject ( { name : 'project-000' , page, returnHome : true } )
1441
1441
await expect ( projectLinks . getByText ( 'project-000' ) ) . toBeVisible ( )
@@ -1693,7 +1693,7 @@ test(
1693
1693
1694
1694
await homePage . projectsLoaded ( )
1695
1695
1696
- await expect ( page . getByText ( 'No Projects found' ) ) . toBeVisible ( )
1696
+ await expect ( page . getByText ( 'No projects found' ) ) . toBeVisible ( )
1697
1697
await createProject ( { name : 'project-000' , page, returnHome : true } )
1698
1698
await expect (
1699
1699
page . getByTestId ( 'project-link' ) . filter ( { hasText : 'project-000' } )
0 commit comments