1
0
Fork 0
mirror of synced 2024-10-05 20:44:47 +13:00

Updating to describe.skip

This commit is contained in:
mike12345567 2024-06-10 14:48:39 +01:00
parent 8f6cfb7634
commit 1c1074d939
4 changed files with 4 additions and 4 deletions

View file

@ -82,7 +82,7 @@ beforeAll(async () => {
})
})
xdescribe("SQS migration", () => {
describe.skip("SQS migration", () => {
it("test migration runs as expected against an older DB", async () => {
const db = dbCore.getDB(config.appId!)
// confirm nothing exists initially

View file

@ -2,7 +2,7 @@ import { context } from "@budibase/backend-core"
import * as setup from "../../api/routes/tests/utilities"
import * as migrations from "../migrations"
xdescribe("migration integrity", () => {
describe.skip("migration integrity", () => {
// 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
it("each migration can rerun safely", async () => {

View file

@ -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 () => {
const config = setup.getConfig()
await config.init()

View file

@ -6,7 +6,7 @@ import { AppMigration } from ".."
const futureTimestamp = `20500101174029`
xdescribe("migrationsProcessor", () => {
describe.skip("migrationsProcessor", () => {
it("running migrations will update the latest applied migration", async () => {
const testMigrations: AppMigration[] = [
{ id: `${futureTimestamp}_123`, func: async () => {} },