1
0
Fork 0
mirror of synced 2024-06-16 09:25:12 +12:00
budibase/packages/worker/src/api/routes/global/tests/templates.spec.ts

36 lines
759 B
TypeScript
Raw Normal View History

2022-11-12 04:43:41 +13:00
import { TestConfiguration } from "../../../../tests"
// TODO
describe("/api/global/template", () => {
const config = new TestConfiguration()
beforeAll(async () => {
await config.beforeAll()
})
afterAll(async () => {
await config.afterAll()
})
afterEach(() => {
jest.clearAllMocks()
})
2022-11-12 04:43:41 +13:00
describe("GET /api/global/template/definitions", () => {
it("retrieves definitions", () => {})
})
describe("POST /api/global/template", () => {})
describe("GET /api/global/template", () => {})
describe("GET /api/global/template/:type", () => {})
describe("GET /api/global/template/:ownerId", () => {})
describe("GET /api/global/template/:id", () => {})
describe("DELETE /api/global/template/:id/:rev", () => {})
})