Updating to describe.skip
This commit is contained in:
parent
8f6cfb7634
commit
1c1074d939
|
@ -82,7 +82,7 @@ beforeAll(async () => {
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
xdescribe("SQS migration", () => {
|
describe.skip("SQS migration", () => {
|
||||||
it("test migration runs as expected against an older DB", async () => {
|
it("test migration runs as expected against an older DB", async () => {
|
||||||
const db = dbCore.getDB(config.appId!)
|
const db = dbCore.getDB(config.appId!)
|
||||||
// confirm nothing exists initially
|
// confirm nothing exists initially
|
||||||
|
|
|
@ -2,7 +2,7 @@ import { context } from "@budibase/backend-core"
|
||||||
import * as setup from "../../api/routes/tests/utilities"
|
import * as setup from "../../api/routes/tests/utilities"
|
||||||
import * as migrations from "../migrations"
|
import * as migrations from "../migrations"
|
||||||
|
|
||||||
xdescribe("migration integrity", () => {
|
describe.skip("migration integrity", () => {
|
||||||
// These test is checking that each migration is "idempotent".
|
// These test is checking that each migration is "idempotent".
|
||||||
// We should be able to rerun any migration, with any rerun not modifiying anything. The code should be aware that the migration already ran
|
// We should be able to rerun any migration, with any rerun not modifiying anything. The code should be aware that the migration already ran
|
||||||
it("each migration can rerun safely", async () => {
|
it("each migration can rerun safely", async () => {
|
||||||
|
|
|
@ -13,7 +13,7 @@ jest.mock<typeof migrations>("../migrations", () => ({
|
||||||
],
|
],
|
||||||
}))
|
}))
|
||||||
|
|
||||||
xdescribe("migrations", () => {
|
describe.skip("migrations", () => {
|
||||||
it("new apps are created with the latest app migration version set", async () => {
|
it("new apps are created with the latest app migration version set", async () => {
|
||||||
const config = setup.getConfig()
|
const config = setup.getConfig()
|
||||||
await config.init()
|
await config.init()
|
||||||
|
|
|
@ -6,7 +6,7 @@ import { AppMigration } from ".."
|
||||||
|
|
||||||
const futureTimestamp = `20500101174029`
|
const futureTimestamp = `20500101174029`
|
||||||
|
|
||||||
xdescribe("migrationsProcessor", () => {
|
describe.skip("migrationsProcessor", () => {
|
||||||
it("running migrations will update the latest applied migration", async () => {
|
it("running migrations will update the latest applied migration", async () => {
|
||||||
const testMigrations: AppMigration[] = [
|
const testMigrations: AppMigration[] = [
|
||||||
{ id: `${futureTimestamp}_123`, func: async () => {} },
|
{ id: `${futureTimestamp}_123`, func: async () => {} },
|
||||||
|
|
Loading…
Reference in New Issue