Fix formatting

This commit is contained in:
Niklas von Hertzen
2017-12-03 17:30:52 +08:00
parent 0b4f922405
commit 0e8a924ea2
3 changed files with 4 additions and 5 deletions

View File

@ -7,9 +7,9 @@ describe('Package', () => {
});
it('should have html2canvas defined', done => {
html2canvas('').catch((err) => {
html2canvas('').catch(err => {
assert.equal(err, 'Provided element is not within a Document');
done();
})
});
});
});