import { processString } from "../src/index" describe("specific test case for whether or not full app template can still be rendered", () => { it("should be able to render the app template", async () => { const template = `
{{{head}}} {{{body}}} ` const context = { appId: "App1", head: "App things
", } const output = await processString(template, context) expect(output).toBe(`App things
`) }) })