updated version and added test
parent
be6c963193
commit
c9cb132b7f
@ -0,0 +1,21 @@
|
|||||||
|
import profile from '../selectors/profile.sel'
|
||||||
|
|
||||||
|
describe('Profile page', () => {
|
||||||
|
beforeEach(() => {
|
||||||
|
cy.register().then((email) => {
|
||||||
|
// we need username to visit profile url
|
||||||
|
cy.wrap(email.split('@')[0]).as('username')
|
||||||
|
cy.login(email)
|
||||||
|
})
|
||||||
|
})
|
||||||
|
|
||||||
|
it('contains correct elements', function () {
|
||||||
|
cy.visit(`/@${this.username}`)
|
||||||
|
cy.get(profile.editProfileButton).should('be.visible')
|
||||||
|
.and('have.attr', 'href', '#/settings')
|
||||||
|
cy.get(profile.userInfoArea).should('be.visible')
|
||||||
|
cy.get(profile.myArticlesTab).should('be.visible')
|
||||||
|
.and('have.css', 'color', 'rgb(92, 184, 92)')
|
||||||
|
cy.get(profile.favouritedArticlesTab).should('be.visible')
|
||||||
|
})
|
||||||
|
})
|
@ -1,4 +1,8 @@
|
|||||||
module.exports = {
|
module.exports = {
|
||||||
savedBio: '[ng-bind*="profile.bio"]',
|
savedBio: '[ng-bind*="profile.bio"]',
|
||||||
image: '.user-info img'
|
image: '.user-info img',
|
||||||
|
editProfileButton: '.btn[ng-show*=isUser]',
|
||||||
|
userInfoArea: '.user-info',
|
||||||
|
myArticlesTab: '.articles-toggle li:nth-child(1) a',
|
||||||
|
favouritedArticlesTab: '.articles-toggle li:nth-child(2) a'
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue