diff --git a/projects/plugins/jetpack/_inc/client/recommendations/prompts/site-type/index.jsx b/projects/plugins/jetpack/_inc/client/recommendations/prompts/site-type/index.jsx index 75c837b5b28fe..7d749662edac2 100644 --- a/projects/plugins/jetpack/_inc/client/recommendations/prompts/site-type/index.jsx +++ b/projects/plugins/jetpack/_inc/client/recommendations/prompts/site-type/index.jsx @@ -58,7 +58,7 @@ const SiteTypeQuestionComponent = props => { /> { expect( screen.getByText( 'Tell us more about Test Site?' ) ).toBeInTheDocument(); expect( screen.getByText( 'I build or manage this site for a client' ) ).toBeInTheDocument(); expect( screen.getByText( 'This is an e-commerce site' ) ).toBeInTheDocument(); - expect( screen.getByText( 'This is my personal site' ) ).toBeInTheDocument(); + expect( screen.getByText( 'This is a personal site' ) ).toBeInTheDocument(); } ); it( 'shows questions with the right default initial state', () => { @@ -81,7 +81,7 @@ describe( 'Recommendations – Site Type', () => { } ); expect( screen.getByLabelText( 'I build or manage this site for a client' ) ).toBeChecked(); expect( screen.getByLabelText( 'This is an e-commerce site' ) ).toBeChecked(); - expect( screen.getByLabelText( 'This is my personal site' ) ).not.toBeChecked(); + expect( screen.getByLabelText( 'This is a personal site' ) ).not.toBeChecked(); } ); it( 'updates the state of a question when an answer is clicked', async () => { @@ -95,7 +95,7 @@ describe( 'Recommendations – Site Type', () => { initialState: buildInitialState(), } ); - const personalCheckbox = screen.getByLabelText( 'This is my personal site' ); + const personalCheckbox = screen.getByLabelText( 'This is a personal site' ); expect( personalCheckbox.checked ).toBe( false ); await user.click( personalCheckbox ); diff --git a/projects/plugins/jetpack/changelog/update-site-type-answer-text b/projects/plugins/jetpack/changelog/update-site-type-answer-text new file mode 100644 index 0000000000000..3e05ab9ee1865 --- /dev/null +++ b/projects/plugins/jetpack/changelog/update-site-type-answer-text @@ -0,0 +1,4 @@ +Significance: minor +Type: enhancement + +Update text on site type question to conflict less with the agency/developer answer diff --git a/projects/plugins/jetpack/to-test.md b/projects/plugins/jetpack/to-test.md index 89b39d66a848e..f521ea8acc4a1 100644 --- a/projects/plugins/jetpack/to-test.md +++ b/projects/plugins/jetpack/to-test.md @@ -13,7 +13,7 @@ There have been updates for the Jetpack Recommendations Assistant. In particular - With the Jetpack Beta Tester [plugin](https://jetpack.com/download-jetpack-beta/) activated, and the 11.4-beta branch active, on the main dashboard page `/wp-admin/admin.php?page=jetpack#/dashboard` there is an option in the footer to "Reset Options (dev only)" which can be used to reset the recommendation steps if they have already been completed. - Navigate to `/wp-admin/admin.php?page=jetpack#/recommendations/site-type` -- Select "This is my personal site". +- Select "This is a personal site". - Then select "Continue", it should skip straight to the Downtime Monitoring recommendation. - Navigate back to `/wp-admin/admin.php?page=jetpack#/recommendations/site-type` - This time, select the "I build or manage this site for a client" option.