mirror of
https://github.com/niklasvh/html2canvas.git
synced 2023-08-10 21:13:10 +03:00
9 lines
225 B
JavaScript
9 lines
225 B
JavaScript
var assert = require('assert');
|
|
var html2canvas = require('../../');
|
|
|
|
describe("Package", function() {
|
|
it("should have html2canvas defined", function() {
|
|
assert.equal(typeof(html2canvas), "function");
|
|
});
|
|
});
|