mirror of
https://github.com/niklasvh/html2canvas.git
synced 2023-08-10 21:13:10 +03:00
Add npm and minified builds
This commit is contained in:
@ -1,24 +1,15 @@
|
||||
var assert = require('assert');
|
||||
var path = require('path');
|
||||
var html2canvas = require('../../');
|
||||
const assert = require('assert');
|
||||
const html2canvas = require('../../');
|
||||
|
||||
describe('Package', function() {
|
||||
it('should have html2canvas defined', function() {
|
||||
describe('Package', () => {
|
||||
it('should have html2canvas defined', () => {
|
||||
assert.equal(typeof html2canvas, 'function');
|
||||
});
|
||||
});
|
||||
|
||||
describe.only('requirejs', function() {
|
||||
var requirejs = require('requirejs');
|
||||
|
||||
requirejs.config({
|
||||
baseUrl: path.resolve(__dirname, '../../dist')
|
||||
});
|
||||
|
||||
it('should have html2canvas defined', function(done) {
|
||||
requirejs(['html2canvas'], function(h2c) {
|
||||
assert.equal(typeof h2c, 'function');
|
||||
it('should have html2canvas defined', done => {
|
||||
html2canvas('').catch((err) => {
|
||||
assert.equal(err, 'Provided element is not within a Document');
|
||||
done();
|
||||
});
|
||||
})
|
||||
});
|
||||
});
|
||||
|
Reference in New Issue
Block a user