const { processString } = require("../src/index.cjs") 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", body: "

App things

", } const output = await processString(template, context) expect(output).toBe(` App

App things

`) }) })