Some cypress test cleanup and fixes

Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
Julius Härtl
2022-08-28 14:37:11 +02:00
parent 74d9e63888
commit a0c47f8115
7 changed files with 213 additions and 142 deletions

View File

@@ -1,33 +1,30 @@
import { randHash } from "../utils";
const randUser = randHash();
import { randHash } from '../utils'
const randUser = randHash()
describe("Stack", function () {
const board = "TestBoard";
const password = "pass123";
const stack = "List 1";
describe('Stack', function() {
const board = 'TestBoard'
const password = 'pass123'
const stack = 'List 1'
before(function () {
before(function() {
cy.nextcloudCreateUser(randUser, password)
cy.deckCreateBoard({ user: randUser, password }, board)
})
beforeEach(function () {
beforeEach(function() {
cy.logout()
cy.login(randUser, password)
})
it("Can create a stack", function () {
it('Can create a stack', function() {
cy.openLeftSidebar()
cy.get("#app-navigation-vue .app-navigation__list .app-navigation-entry")
.eq(3)
.find("a.app-navigation-entry-link")
.first()
cy.getNavigationEntry(board)
.click({ force: true })
cy.get("#stack-add button").first().click()
cy.get("#stack-add form input#new-stack-input-main").type(stack)
cy.get("#stack-add form input[type=submit]").first().click()
cy.get('#stack-add button').first().click()
cy.get('#stack-add form input#new-stack-input-main').type(stack)
cy.get('#stack-add form input[type=submit]').first().click()
cy.get(".board .stack").eq(0).contains(stack).should("be.visible")
cy.get('.board .stack').eq(0).contains(stack).should('be.visible')
})
});
})