2aceca54ca
Co-authored-by: kolaente <k@knt.li> Reviewed-on: https://kolaente.dev/vikunja/frontend/pulls/380 Co-authored-by: konrad <konrad@kola-entertainments.de> Co-committed-by: konrad <konrad@kola-entertainments.de>
45 lines
1.1 KiB
JavaScript
45 lines
1.1 KiB
JavaScript
import {UserFactory} from '../../factories/user'
|
|
|
|
import '../../support/authenticateUser'
|
|
|
|
describe('User Settings', () => {
|
|
beforeEach(() => {
|
|
UserFactory.create(1)
|
|
})
|
|
|
|
it('Changes the user avatar', () => {
|
|
cy.visit('/user/settings')
|
|
|
|
cy.get('input[name=avatarProvider][value=upload]')
|
|
.click()
|
|
cy.get('input[type=file]')
|
|
.attachFile('image.jpg')
|
|
cy.get('.vue-handler-wrapper.vue-handler-wrapper--south .vue-simple-handler.vue-simple-handler--south')
|
|
.trigger('mousedown', {which: 1})
|
|
.trigger('mousemove', {clientY: 100})
|
|
.trigger('mouseup')
|
|
cy.get('a.button.is-primary')
|
|
.contains('Upload Avatar')
|
|
.click()
|
|
|
|
cy.wait(3000) // Wait for the request to finish
|
|
cy.get('.global-notification')
|
|
.should('contain', 'Success')
|
|
})
|
|
|
|
it('Updates the name', () => {
|
|
cy.visit('/user/settings')
|
|
|
|
cy.get('input#newName')
|
|
.type('Lorem Ipsum')
|
|
cy.get('.card.general-settings .button.is-primary')
|
|
.contains('Save')
|
|
.click()
|
|
|
|
cy.wait(3000) // Wait for the request to finish
|
|
cy.get('.global-notification')
|
|
.should('contain', 'Success')
|
|
cy.get('.navbar .user .username')
|
|
.should('contain', 'Lorem Ipsum')
|
|
})
|
|
})
|