const expect = require("chai").expect; const CompileText = require("../lib/compileText"); // describe("Compile AST to HTML String", function () { // it("Simple AST", function () { // const ast = [ // { type: 'bold', children: [ 'arun' ] }, // { type: 'text', children: [ 'bold' ] }, // { type: 'text', children: [ 'son' ] } // ]; // const expectedOutput = // expect(CompileText(ast)).to.eql("TheKINGMaker"); // }); // });