Test uuid helper
This commit is contained in:
parent
181d462cdf
commit
2899c4f7f8
|
@ -1,3 +1,5 @@
|
||||||
|
import { validate as isValidUUID } from "uuid"
|
||||||
|
|
||||||
jest.mock("@budibase/handlebars-helpers/lib/math", () => {
|
jest.mock("@budibase/handlebars-helpers/lib/math", () => {
|
||||||
const actual = jest.requireActual("@budibase/handlebars-helpers/lib/math")
|
const actual = jest.requireActual("@budibase/handlebars-helpers/lib/math")
|
||||||
|
|
||||||
|
@ -43,8 +45,18 @@ describe("jsRunner", () => {
|
||||||
expect(output).toBe(3)
|
expect(output).toBe(3)
|
||||||
})
|
})
|
||||||
|
|
||||||
runJsHelpersTests({
|
describe("helpers", () => {
|
||||||
funcWrap: (func: any) => config.doInContext(config.getAppId(), func),
|
runJsHelpersTests({
|
||||||
testsToSkip: ["random", "uuid"],
|
funcWrap: (func: any) => config.doInContext(config.getAppId(), func),
|
||||||
|
testsToSkip: ["random", "uuid"],
|
||||||
|
})
|
||||||
|
|
||||||
|
describe("uuid", () => {
|
||||||
|
it("uuid helper returns a valid uuid", async () => {
|
||||||
|
const result = await processJS("return helpers.uuid()")
|
||||||
|
expect(result).toBeDefined()
|
||||||
|
expect(isValidUUID(result)).toBe(true)
|
||||||
|
})
|
||||||
|
})
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in New Issue