1
0
Fork 0
mirror of synced 2024-06-02 10:34:40 +12:00
budibase/qa-core/src/config/internal-api/fixtures/applications.ts

14 lines
314 B
TypeScript
Raw Normal View History

2022-09-29 06:21:05 +13:00
import generator from "../../generator"
2022-09-29 21:33:48 +13:00
import {
Application,
} from "@budibase/server/api/controllers/public/mapping/types"
2022-09-29 06:21:05 +13:00
2022-09-29 21:33:48 +13:00
const generate = (overrides: Partial<Application> = {}): Partial<Application> => ({
2022-09-29 06:21:05 +13:00
name: generator.word(),
url: `/${generator.word()}`,
...overrides,
})
export default generate