1
0
Fork 0
mirror of synced 2024-08-17 11:01:26 +12:00

Merge remote-tracking branch 'origin/develop' into feature/default-internal-datasource

This commit is contained in:
Dean 2022-11-16 11:58:17 +00:00
commit a7042dc9ba
4 changed files with 7 additions and 7 deletions

View file

@ -10,7 +10,7 @@ filterTests(['smoke', 'all'], () => {
}) })
if (!(Cypress.env("TEST_ENV"))) { if (!(Cypress.env("TEST_ENV"))) {
it("should show the new user UI/UX", () => { it.skip("should show the new user UI/UX", () => {
cy.visit(`${Cypress.config().baseUrl}/builder/portal/apps/create`, { timeout: 5000 }) //added /portal/apps/create cy.visit(`${Cypress.config().baseUrl}/builder/portal/apps/create`, { timeout: 5000 }) //added /portal/apps/create
cy.wait(1000) cy.wait(1000)
cy.get(interact.CREATE_APP_BUTTON, { timeout: 10000 }).contains('Start from scratch').should("exist") cy.get(interact.CREATE_APP_BUTTON, { timeout: 10000 }).contains('Start from scratch').should("exist")
@ -83,7 +83,7 @@ filterTests(['smoke', 'all'], () => {
}) })
}) })
it("should create the first application from scratch", () => { it.skip("should create the first application from scratch", () => {
const appName = "Cypress Tests" const appName = "Cypress Tests"
cy.createApp(appName, false) cy.createApp(appName, false)
@ -93,7 +93,7 @@ filterTests(['smoke', 'all'], () => {
cy.deleteApp(appName) cy.deleteApp(appName)
}) })
it("should create the first application from scratch with a default name", () => { it.skip("should create the first application from scratch with a default name", () => {
cy.updateUserInformation("", "") cy.updateUserInformation("", "")
cy.createApp("", false) cy.createApp("", false)
cy.applicationInAppTable("My app") cy.applicationInAppTable("My app")

View file

@ -24,7 +24,7 @@ filterTests(['smoke', 'all'], () => {
cy.wait(500) cy.wait(500)
cy.contains("dog").click() cy.contains("dog").click()
// Create action // Create action
cy.get('[aria-label="AddCircle"]', { timeout: 2000 }).eq(1).click() cy.get('[aria-label="AddCircle"]', { timeout: 2000 }).click()
cy.get(interact.MODAL_INNER_WRAPPER).within(() => { cy.get(interact.MODAL_INNER_WRAPPER).within(() => {
cy.wait(1000) cy.wait(1000)
cy.contains("Create Row").trigger('mouseover').click().click() cy.contains("Create Row").trigger('mouseover').click().click()

View file

@ -9,7 +9,7 @@ filterTests(["smoke", "all"], () => {
cy.navigateToFrontend() cy.navigateToFrontend()
}) })
it("Should successfully create a screen", () => { it.skip("Should successfully create a screen", () => {
cy.createScreen("test") cy.createScreen("test")
cy.get(interact.BODY).within(() => { cy.get(interact.BODY).within(() => {
cy.contains("/test").should("exist") cy.contains("/test").should("exist")
@ -23,7 +23,7 @@ filterTests(["smoke", "all"], () => {
}) })
}) })
it("should delete all screens then create first screen via button", () => { it.skip("should delete all screens then create first screen via button", () => {
cy.deleteAllScreens() cy.deleteAllScreens()
cy.contains("Create first screen").click() cy.contains("Create first screen").click()

View file

@ -2,7 +2,7 @@ import filterTests from "../support/filterTests"
const interact = require('../support/interact') const interact = require('../support/interact')
filterTests(['smoke', 'all'], () => { filterTests(['smoke', 'all'], () => {
context("Revert apps", () => { xcontext("Revert apps", () => {
before(() => { before(() => {
cy.login() cy.login()
cy.createTestApp() cy.createTestApp()