1
0
Fork 0
mirror of synced 2024-07-04 05:50:57 +12:00
budibase/packages/string-templates/test/escapes.spec.js

21 lines
626 B
JavaScript

const {
processString,
} = require("../src/index")
describe("Handling context properties with spaces in their name", () => {
it("should be able to handle a property with a space in its name", () => {
const output = processString("hello my name is {{ person name }}", {
"person name": "Mike",
})
expect(output).toBe("hello my name is Mike")
})
it("should be able to handle an object with layers that requires escaping", () => {
const output = processString("testcase {{ testing.test case }}", {
testing: {
"test case": 1
}
})
expect(output).toBe("testcase 1")
})
})