1
0
Fork 0
mirror of synced 2024-09-17 17:57:47 +12:00
budibase/packages/string-templates/test/manifest.spec.js
Adria Navarro dc0bef20d8 Fix sum
2024-01-23 19:32:03 +01:00

35 lines
956 B
JavaScript

jest.mock("@budibase/handlebars-helpers/lib/math", () => {
const actual = jest.requireActual("@budibase/handlebars-helpers/lib/math")
return {
...actual,
random: () => 10,
}
})
const fs = require("fs")
const { processString } = require("../src/index.cjs")
const tk = require("timekeeper")
tk.freeze("2021-01-21T12:00:00")
const manifest = JSON.parse(
fs.readFileSync(require.resolve("../manifest.json"), "utf8")
)
const examples = Object.keys(manifest).flatMap(collection =>
Object.keys(manifest[collection]).map(fnc => [collection, fnc])
)
describe("manifest", () => {
describe("examples are valid", () => {
it.each(examples)("%s - %s", async (collection, func) => {
const example = manifest[collection][func].example
let [hbs, js] = example.split("->").map(x => x.trim())
hbs = hbs.replace(/'\[1, 2, 3\]'/, "array")
expect(await processString(hbs, { array: [1, 2, 3] })).toEqual(js)
})
})
})