1
0
Fork 0
mirror of synced 2024-05-22 21:33:45 +12:00
budibase/packages/worker/src/api/routes/global/tests/roles.spec.ts
2022-11-11 15:43:41 +00:00

28 lines
514 B
TypeScript

import { TestConfiguration } from "../../../../tests"
// TODO
describe("/api/global/roles", () => {
const config = new TestConfiguration()
beforeAll(async () => {
await config.beforeAll()
})
afterAll(async () => {
await config.afterAll()
})
afterEach(() => {
jest.clearAllMocks()
})
describe("GET /api/global/roles", () => {
it("retrieves roles", () => {})
})
describe("GET /api/global/roles/:appId", () => {})
describe("DELETE /api/global/roles/:appId", () => {})
})