cdbd1c2ac4
Co-authored-by: Dominik Pschenitschni <mail@celement.de> Reviewed-on: https://kolaente.dev/vikunja/frontend/pulls/1123 Reviewed-by: konrad <k@knt.li> Co-authored-by: Dominik Pschenitschni <dpschen@noreply.kolaente.de> Co-committed-by: Dominik Pschenitschni <dpschen@noreply.kolaente.de>
45 lines
1.2 KiB
JavaScript
45 lines
1.2 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/avatar')
|
|
|
|
cy.get('input[name=avatarProvider][value=upload]')
|
|
.click()
|
|
cy.get('input[type=file]', { timeout: 1000 })
|
|
.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('[data-cy="uploadAvatar"]')
|
|
.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/general')
|
|
|
|
cy.get('.general-settings .control input.input')
|
|
.first()
|
|
.type('Lorem Ipsum')
|
|
cy.get('[data-cy="saveGeneralSettings"]')
|
|
.contains('Save')
|
|
.click()
|
|
|
|
cy.get('.global-notification')
|
|
.should('contain', 'Success')
|
|
cy.get('.navbar .user .username')
|
|
.should('contain', 'Lorem Ipsum')
|
|
})
|
|
})
|