Skip to content

Commit 303c221

Browse files
Add note for future test
1 parent 87050ef commit 303c221

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

tests/cypress/e2e/settings.test.js

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,7 @@ describe('Admin can update plugin settings', () => {
278278
});
279279
});
280280

281-
it('Ensure settings persist between logging out and logging back in of Mailchimp account', () => {
281+
it.skip('Ensure settings persist between logging out and logging back in of Mailchimp account', () => {
282282
// Setup
283283
cy.visit('/wp-admin/admin.php?page=mailchimp_sf_options');
284284
cy.get('#mailchimp_sf_oauth_connect').should('not.exist');
@@ -300,4 +300,12 @@ describe('Admin can update plugin settings', () => {
300300
// TODO: Ensure that the option we set differently at the start of the test
301301
// was saved and persists even though we've logged in and out
302302
});
303+
304+
it.skip('The signup form is not displayed on the front end unless a list is saved', () => {
305+
// TODO: Log the user out and verify no sign up form exists on the frontend
306+
// TODO: BLOCKED - Option 1 (preferred): Use a test user that has never saved a list to verify the list can
307+
// not be seen on the FE
308+
// Option 2: Delete the option that saves the list selection in the DB to test that a sign up form
309+
// will not display on the FE without being selected. Would require interacting with the BE.
310+
});
303311
});

0 commit comments

Comments
 (0)