1
0
Fork 0
mirror of synced 2024-10-01 17:47:46 +13:00

Removing test case that didn't make sense anymore.

This commit is contained in:
mike12345567 2021-03-23 18:06:36 +00:00
parent 1a878c3e08
commit 7a47f96210

View file

@ -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()
})
})
})
})