hjkhjkjhkhjkgjghjhgjhgjghjhghjghjhgjjnbvnvbnvk
bnmbnmbnhjkhjkhjkhjktyutyutyuytutyutyutyhgjgjghjgjghjguytutyry
/
home
/
b4h4ej4a6kj6
/
public_html
/
mahetechnologies.co.uk
/
workshop
/
admin
/
js
/
jsPDF-master
/
test
/
specs
/
Upload FileeE
HOME
/* global describe, it, jsPDF, comparePdf */ /** * Standard spec tests */ describe("Module: SetLanguage", () => { beforeAll(loadGlobals); it("set english (US)", () => { const doc = new jsPDF({ floatPrecision: 2 }); doc.setLanguage("en-US"); comparePdf(doc.output(), "enUS.pdf", "setlanguage"); }); it("refuse non-existing-language", () => { const doc = new jsPDF({ floatPrecision: 2 }); doc.setLanguage("zz"); comparePdf(doc.output(), "blank.pdf", "text"); }); });