Remove redundant test code.
This commit is contained in:
parent
d613bb5a44
commit
c2d41e0671
1 changed files with 0 additions and 26 deletions
|
@ -118,8 +118,6 @@ describe('Forms', () => {
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
// cy.wait(500);
|
|
||||||
|
|
||||||
// Change name and unsubscribe from one list.
|
// Change name and unsubscribe from one list.
|
||||||
cy.get('input[name=name]').clear().type('new-name');
|
cy.get('input[name=name]').clear().type('new-name');
|
||||||
cy.get('ul.lists input:first').click();
|
cy.get('ul.lists input:first').click();
|
||||||
|
@ -131,30 +129,6 @@ describe('Forms', () => {
|
||||||
expect(data.results[1].lists.find((s) => s.id === 2).subscription_status).to.equal('unsubscribed');
|
expect(data.results[1].lists.find((s) => s.id === 2).subscription_status).to.equal('unsubscribed');
|
||||||
expect(data.results[1].lists.find((s) => s.id === 3).subscription_status).to.equal('unconfirmed');
|
expect(data.results[1].lists.find((s) => s.id === 3).subscription_status).to.equal('unconfirmed');
|
||||||
});
|
});
|
||||||
|
|
||||||
// // Unsubscribe from one list.
|
|
||||||
// cy.get('button').click();
|
|
||||||
// cy.request('GET', `${apiUrl}/api/subscribers`).then((response) => {
|
|
||||||
// const { data } = response.body;
|
|
||||||
// expect(data.results[0].lists.find((s) => s.id === 2).subscription_status).to.equal('unsubscribed');
|
|
||||||
// expect(data.results[0].lists.find((s) => s.id === 3).subscription_status).to.equal('unconfirmed');
|
|
||||||
// });
|
|
||||||
|
|
||||||
// // Go back.
|
|
||||||
// cy.url().then((u) => {
|
|
||||||
// cy.loginAndVisit(u);
|
|
||||||
// });
|
|
||||||
|
|
||||||
// // Unsubscribe from all.
|
|
||||||
// cy.get('#privacy-blocklist').click();
|
|
||||||
// cy.get('button').click();
|
|
||||||
|
|
||||||
// cy.request('GET', `${apiUrl}/api/subscribers`).then((response) => {
|
|
||||||
// const { data } = response.body;
|
|
||||||
// expect(data.results[0].status).to.equal('blocklisted');
|
|
||||||
// expect(data.results[0].lists.find((s) => s.id === 2).subscription_status).to.equal('unsubscribed');
|
|
||||||
// expect(data.results[0].lists.find((s) => s.id === 3).subscription_status).to.equal('unsubscribed');
|
|
||||||
// });
|
|
||||||
});
|
});
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue