File size: 2,654 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 |
import data from '../../shared/testing/data';
const user = data.users.find(user => user.username === 'brian');
const pressEscape = () =>
cy.get('[data-cy="modal-container"]').trigger('keydown', { keyCode: 27 });
const communityBeforeUrlIsValid = () =>
cy.url().should('eq', 'http://localhost:3000/spectrum?tab=posts');
const channelBeforeUrlIsValid = () =>
cy.url().should('eq', 'http://localhost:3000/spectrum/general?tab=posts');
describe.skip('thread modal route', () => {
const threadSlider = () => cy.get('[data-cy="modal-container"]');
const threadSliderClose = () => cy.get('[data-cy="thread-slider-close"]');
it('handles esc key', () => {
cy.visit('/spectrum');
cy.get('[data-cy="thread-card"]')
.first()
.click();
threadSlider().should('be.visible');
cy.url(
'eq',
'http://localhost:3000/spectrum/private/yet-another-thread~thread-6'
);
pressEscape();
communityBeforeUrlIsValid();
threadSlider().should('not.be.visible');
});
it('handles overlay click', () => {
cy.visit('/spectrum');
cy.get('[data-cy="thread-card"]')
.first()
.click();
threadSlider().should('be.visible');
cy.url(
'eq',
'http://localhost:3000/spectrum/private/yet-another-thread~thread-6'
);
cy.get('[data-cy="overlay"]').click(200, 200, { force: true });
communityBeforeUrlIsValid();
threadSlider().should('not.be.visible');
});
it('handles close click', () => {
cy.visit('/spectrum');
cy.get('[data-cy="thread-card"]')
.first()
.click();
threadSlider().should('be.visible');
cy.url(
'eq',
'http://localhost:3000/spectrum/private/yet-another-thread~thread-6'
);
threadSliderClose().click();
communityBeforeUrlIsValid();
threadSlider().should('not.be.visible');
});
it('handles channel feed', () => {
cy.visit('/spectrum/general');
cy.get('[data-cy="thread-card"]')
.first()
.click();
threadSlider().should('be.visible');
cy.url(
'eq',
'http://localhost:3000/spectrum/spectrum/general/yet-another-thread~thread-9'
);
pressEscape();
channelBeforeUrlIsValid();
threadSlider().should('not.be.visible');
});
it('handles thread attachment', () => {
cy.auth(user.id);
cy.visit('/spectrum/private/yet-another-thread~thread-6');
cy.get('[data-cy="thread-attachment"]')
.should('be.visible')
.first()
.click();
threadSlider().should('be.visible');
pressEscape();
cy.url(
'eq',
'http://localhost:3000/spectrum/private/yet-another-thread~thread-6'
);
});
});
|