diff --git a/src/export/packer/packer.spec.ts b/src/export/packer/packer.spec.ts index 5500144eff..b2c3e21836 100644 --- a/src/export/packer/packer.spec.ts +++ b/src/export/packer/packer.spec.ts @@ -37,6 +37,14 @@ describe("Packer", () => { }); }); + describe("#toString()", () => { + it("should return a non-empty string", async () => { + const result = await Packer.toString(file); + + assert.isAbove(result.length, 0); + }); + }); + describe("#toBuffer()", () => { it("should create a standard docx file", async function () { this.timeout(99999999);