1
0

Move all create views to better looking popups (#383)

Co-authored-by: kolaente <k@knt.li>
Reviewed-on: https://kolaente.dev/vikunja/frontend/pulls/383
Co-authored-by: konrad <konrad@kola-entertainments.de>
Co-committed-by: konrad <konrad@kola-entertainments.de>
This commit is contained in:
konrad
2021-01-21 22:33:16 +00:00
parent 0d34d01689
commit ddadd89c64
16 changed files with 278 additions and 176 deletions

View File

@ -25,12 +25,12 @@ describe('Lists', () => {
.click()
cy.url()
.should('contain', '/namespaces/1/list')
cy.get('h3')
cy.get('.card-header-title')
.contains('Create a new list')
cy.get('input.input')
.type('New List')
cy.get('.button')
.contains('Add')
.contains('Create')
.click()
cy.wait(1000) // Waiting until the request to create the new list is done
@ -142,9 +142,8 @@ describe('Lists', () => {
})
cy.visit('/lists/1/table')
cy.get('.table-view table.table a')
cy.get('.table-view table.table')
.contains(tasks[0].title)
.first()
.click()
cy.url()
@ -364,7 +363,6 @@ describe('Lists', () => {
cy.get('.kanban .bucket .tasks .task')
.contains(tasks[0].title)
.first()
.click()
cy.url()

View File

@ -26,12 +26,12 @@ describe('Namepaces', () => {
.click()
cy.url()
.should('contain', '/namespaces/new')
cy.get('h3')
cy.get('.card-header-title')
.should('contain', 'Create a new namespace')
cy.get('input.input')
.type('New Namespace')
cy.get('.button')
.contains('Add')
.contains('Create')
.click()
cy.url()
.should('contain', '/namespaces')