Browse Source

Re-adding tests

I had removed a lot of these for checking against the CI - adding them back in
pull/4140/head
Mitch-Budibase 4 years ago
parent
commit
d87d5f2fed
  1. 2
      packages/builder/cypress/integration/addRadioButtons.spec.js
  2. 2
      packages/builder/cypress/integration/createApp.spec.js
  3. 2
      packages/builder/cypress/integration/createAutomation.spec.js
  4. 2
      packages/builder/cypress/integration/createBinding.spec.js
  5. 2
      packages/builder/cypress/integration/createScreen.js
  6. 2
      packages/builder/cypress/integration/createTable.spec.js
  7. 2
      packages/builder/cypress/integration/createUser.spec.js
  8. 2
      packages/builder/cypress/integration/createUserAndRoles.spec.js
  9. 2
      packages/builder/cypress/integration/createView.spec.js
  10. 2
      packages/builder/cypress/integration/datasources/datasourceWizard.spec.js
  11. 2
      packages/builder/cypress/integration/datasources/mySql.spec.js
  12. 2
      packages/builder/cypress/integration/datasources/oracle.spec.js
  13. 2
      packages/builder/cypress/integration/datasources/postgreSql.spec.js
  14. 2
      packages/builder/cypress/integration/datasources/rest.spec.js
  15. 2
      packages/builder/cypress/integration/queryLevelTransformers.spec.js
  16. 2
      packages/builder/cypress/integration/renameAnApplication.spec.js
  17. 2
      packages/builder/cypress/integration/revertApp.spec.js

2
packages/builder/cypress/integration/addRadioButtons.spec.js

@ -1,7 +1,7 @@
import filterTests from "../support/filterTests"
filterTests(['all'], () => {
xcontext("Add Radio Buttons", () => {
context("Add Radio Buttons", () => {
before(() => {
cy.login()
cy.createTestApp()

2
packages/builder/cypress/integration/createApp.spec.js

@ -1,7 +1,7 @@
import filterTests from '../support/filterTests'
filterTests(['smoke', 'all'], () => {
xcontext("Create an Application", () => {
context("Create an Application", () => {
it("should create a new application", () => {
cy.login()
cy.createTestApp()

2
packages/builder/cypress/integration/createAutomation.spec.js

@ -1,7 +1,7 @@
import filterTests from "../support/filterTests"
filterTests(['smoke', 'all'], () => {
xcontext("Create a automation", () => {
context("Create a automation", () => {
before(() => {
cy.login()
cy.createTestApp()

2
packages/builder/cypress/integration/createBinding.spec.js

@ -1,7 +1,7 @@
import filterTests from "../support/filterTests"
filterTests(['smoke', 'all'], () => {
xcontext("Create Bindings", () => {
context("Create Bindings", () => {
before(() => {
cy.login()
cy.createTestApp()

2
packages/builder/cypress/integration/createScreen.js

@ -1,7 +1,7 @@
import filterTests from "../support/filterTests"
filterTests(["smoke", "all"], () => {
xcontext("Screen Tests", () => {
context("Screen Tests", () => {
before(() => {
cy.login()
cy.createTestApp()

2
packages/builder/cypress/integration/createTable.spec.js

@ -1,7 +1,7 @@
import filterTests from "../support/filterTests"
filterTests(['smoke', 'all'], () => {
xcontext("Create a Table", () => {
context("Create a Table", () => {
before(() => {
cy.login()
cy.createTestApp()

2
packages/builder/cypress/integration/createUser.spec.js

@ -1,4 +1,4 @@
xcontext("Create a User", () => {
context("Create a User", () => {
before(() => {
cy.login()
})

2
packages/builder/cypress/integration/createUserAndRoles.spec.js

@ -2,7 +2,7 @@ import filterTests from "../support/filterTests"
filterTests(['smoke', 'all'], () => {
xcontext("Create a User and Assign Roles", () => {
context("Create a User and Assign Roles", () => {
before(() => {
cy.login()
})

2
packages/builder/cypress/integration/createView.spec.js

@ -1,7 +1,7 @@
import filterTests from "../support/filterTests"
filterTests(['smoke', 'all'], () => {
xcontext("Create a View", () => {
context("Create a View", () => {
before(() => {
cy.login()
cy.createTestApp()

2
packages/builder/cypress/integration/datasources/datasourceWizard.spec.js

@ -1,7 +1,7 @@
import filterTests from "../../support/filterTests"
filterTests(['all'], () => {
xcontext("Datasource Wizard", () => {
context("Datasource Wizard", () => {
before(() => {
cy.login()
cy.createTestApp()

2
packages/builder/cypress/integration/datasources/mySql.spec.js

@ -1,7 +1,7 @@
import filterTests from "../../support/filterTests"
filterTests(['all'], () => {
xcontext("MySQL Datasource Testing", () => {
context("MySQL Datasource Testing", () => {
if (Cypress.env("TEST_ENV")) {
before(() => {

2
packages/builder/cypress/integration/datasources/oracle.spec.js

@ -1,7 +1,7 @@
import filterTests from "../../support/filterTests"
filterTests(['all'], () => {
xcontext("Oracle Datasource Testing", () => {
context("Oracle Datasource Testing", () => {
if (Cypress.env("TEST_ENV")) {
before(() => {

2
packages/builder/cypress/integration/datasources/postgreSql.spec.js

@ -1,7 +1,7 @@
import filterTests from "../../support/filterTests"
filterTests(['all'], () => {
xcontext("PostgreSQL Datasource Testing", () => {
context("PostgreSQL Datasource Testing", () => {
if (Cypress.env("TEST_ENV")) {
before(() => {

2
packages/builder/cypress/integration/datasources/rest.spec.js

@ -1,7 +1,7 @@
import filterTests from "../../support/filterTests"
filterTests(['smoke', 'all'], () => {
xcontext("REST Datasource Testing", () => {
context("REST Datasource Testing", () => {
before(() => {
cy.login()
cy.createTestApp()

2
packages/builder/cypress/integration/queryLevelTransformers.spec.js

@ -1,7 +1,7 @@
import filterTests from "../support/filterTests"
filterTests(['smoke', 'all'], () => {
xcontext("Query Level Transformers", () => {
context("Query Level Transformers", () => {
before(() => {
cy.login()
cy.deleteApp("Cypress Tests")

2
packages/builder/cypress/integration/renameAnApplication.spec.js

@ -1,7 +1,7 @@
import filterTests from "../support/filterTests"
filterTests(['all'], () => {
xcontext("Rename an App", () => {
context("Rename an App", () => {
beforeEach(() => {
cy.login()
cy.createTestApp()

2
packages/builder/cypress/integration/revertApp.spec.js

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

Loading…
Cancel
Save