24 lines
782 B
JavaScript
24 lines
782 B
JavaScript
/// <reference types="cypress" />
|
|
|
|
describe('Unsubscribe from email link', () => {
|
|
beforeEach(() =>{
|
|
// cy.intercept('POST', /\S+\/unsubscribe_user_match\/\S+/, { statusCode: 200, body: { ok: true } });
|
|
cy.intercept('POST', /\S+\/unsubscribe\/\S+/, { statusCode: 200, body: { ok: true } });
|
|
})
|
|
|
|
it("redirect to home page if tok is not provided", () => {
|
|
cy.visit('/public/unsubscribe');
|
|
cy.location('pathname').should('eq', '/errors/404');
|
|
});
|
|
|
|
it("show unsubscribed message", () => {
|
|
cy.visit('/public/unsubscribe/123');
|
|
// cy.location('search')
|
|
// .should('equal', '?tok=123')
|
|
// .then((s) => new URLSearchParams(s))
|
|
// .invoke('get', 'tok')
|
|
// .should('equal', '123')
|
|
cy.contains("Unsubscribe from JamKazam emails")
|
|
});
|
|
|
|
}) |