add rtl mode

This commit is contained in:
amitm02
2018-07-24 18:52:45 +03:00
parent f299e49966
commit 3015b05c77
3 changed files with 27 additions and 1 deletions

View File

@ -139,6 +139,16 @@ describe("Run", () => {
});
});
describe("#rtl", () => {
it("should set the run to the RTL mode", () => {
run.rtl();
const tree = new Formatter().format(run);
expect(tree).to.deep.equal({
"w:r": [{ "w:rPr": [{ "w:rtl": [{ _attr: { "w:val": true } }]}]}],
});
});
});
describe("#style", () => {
it("should set the style to the given styleId", () => {
run.style("myRunStyle");