inspectEmbeddedTemplate.test.ts•987 B
import { describe, it } from "@jest/globals"
import { inspectTreeStructure, testParseSourceCodeDefinitions } from "./helpers"
import { embeddedTemplateQuery } from "../queries"
import sampleEmbeddedTemplateContent from "./fixtures/sample-embedded_template"
describe("inspectEmbeddedTemplate", () => {
const testOptions = {
language: "embedded_template",
wasmFile: "tree-sitter-embedded_template.wasm",
queryString: embeddedTemplateQuery,
extKey: "erb", // Match the file extension we're using
}
it("should inspect embedded template tree structure", async () => {
const result = await inspectTreeStructure(sampleEmbeddedTemplateContent, "embedded_template")
expect(result).toBeTruthy()
})
it("should parse embedded template definitions", async () => {
const result = await testParseSourceCodeDefinitions("test.erb", sampleEmbeddedTemplateContent, testOptions)
expect(result).toBeTruthy()
expect(result).toMatch(/\d+--\d+ \|/) // Verify line number format
})
})