Initial commit for radiantrh project

This commit is contained in:
2025-12-07 08:36:26 +00:00
commit 6dc580b90b
3334 changed files with 2221683 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
describe('creation', function () {
it('html2pdf should exist', function () {
expect(window.html2pdf).to.exist;
});
it('html2pdf() should produce a thenable object', function () {
expect(html2pdf().then).to.be.a('function');
});
it('new html2pdf.Worker should produce a thenable object', function () {
expect((new html2pdf.Worker).then).to.be.a('function');
});
});