Browse Source

Removing test case that didn't make sense anymore.

pull/1331/head
mike12345567 5 years ago
parent
commit
e9ee49cce1
  1. 16
      packages/server/src/api/routes/tests/cloud.spec.js

16
packages/server/src/api/routes/tests/cloud.spec.js

@ -1,16 +0,0 @@
const setup = require("./utilities")
describe("test things in the Cloud/Self hosted", () => {
describe("test self hosted static page", () => {
it("should be able to load the static page", async () => {
await setup.switchToCloudForFunction(async () => {
let request = setup.getRequest()
let config = setup.getConfig()
await config.init()
const res = await request.get(`/`).expect(200)
expect(res.text.includes("<title>Budibase self hosting️</title>")).toEqual(true)
setup.afterAll()
})
})
})
})
Loading…
Cancel
Save