@@ -10,7 +10,7 @@ describe.skip('About Page for free users with only 1 user', () => {
1010 accountType : 'free' ,
1111 hasUsers : false ,
1212 } ) . then ( ( ) => {
13- cy . visit ( `/orgs/${ id } /about ` )
13+ cy . visit ( `/orgs/${ id } /org-settings ` )
1414 cy . getByTestID ( 'about-page--header' ) . should ( 'be.visible' )
1515 } )
1616 } )
@@ -27,7 +27,7 @@ describe.skip('About Page for free users with only 1 user', () => {
2727
2828 cy . location ( )
2929 . should ( loc => {
30- expect ( loc . pathname ) . to . include ( `/about /delete` )
30+ expect ( loc . pathname ) . to . include ( `/org-settings /delete` )
3131 } )
3232 . then ( ( ) => {
3333 cy . getByTestID ( 'delete-org--overlay' ) . should ( 'exist' )
@@ -56,7 +56,7 @@ describe('About Page for free users with multiple users', () => {
5656 accountType : 'free' ,
5757 hasUsers : true ,
5858 } ) . then ( ( ) => {
59- cy . visit ( `/orgs/${ id } /about ` )
59+ cy . visit ( `/orgs/${ id } /org-settings ` )
6060 cy . getByTestID ( 'about-page--header' ) . should ( 'be.visible' )
6161 } )
6262 } )
@@ -75,7 +75,7 @@ describe('About Page for free users with multiple users', () => {
7575 } )
7676
7777 cy . location ( ) . should ( loc => {
78- expect ( loc . pathname ) . to . include ( `/users ` )
78+ expect ( loc . pathname ) . to . include ( `/members ` )
7979 } )
8080 } )
8181} )
@@ -88,7 +88,7 @@ describe('About Page for PAYG users', () => {
8888 cy . quartzProvision ( {
8989 accountType : 'pay_as_you_go' ,
9090 } ) . then ( ( ) => {
91- cy . visit ( `/orgs/${ id } /about ` )
91+ cy . visit ( `/orgs/${ id } /org-settings ` )
9292 cy . getByTestID ( 'about-page--header' ) . should ( 'be.visible' )
9393 } )
9494 } )
0 commit comments