mirror of
https://github.com/niklasvh/html2canvas.git
synced 2023-08-10 21:13:10 +03:00
Beging implementing reftests
This commit is contained in:
@ -2,22 +2,22 @@ var assert = require('assert');
|
||||
var path = require('path');
|
||||
var html2canvas = require('../../');
|
||||
|
||||
describe("Package", function() {
|
||||
it("should have html2canvas defined", function() {
|
||||
assert.equal(typeof(html2canvas), "function");
|
||||
describe('Package', function() {
|
||||
it('should have html2canvas defined', function() {
|
||||
assert.equal(typeof html2canvas, 'function');
|
||||
});
|
||||
});
|
||||
|
||||
describe.only("requirejs", function() {
|
||||
describe.only('requirejs', function() {
|
||||
var requirejs = require('requirejs');
|
||||
|
||||
requirejs.config({
|
||||
baseUrl: path.resolve(__dirname, '../../dist')
|
||||
});
|
||||
|
||||
it("should have html2canvas defined", function(done) {
|
||||
it('should have html2canvas defined', function(done) {
|
||||
requirejs(['html2canvas'], function(h2c) {
|
||||
assert.equal(typeof(h2c), "function");
|
||||
assert.equal(typeof h2c, 'function');
|
||||
done();
|
||||
});
|
||||
});
|
||||
|
Reference in New Issue
Block a user