Merge pull request #7133 from Snuffleupagus/faster-unittests-beforeAll-afterAll

Faster unit-tests by using `beforeAll`/`afterAll` in api_spec.js
This commit is contained in:
Yury Delendik 2016-03-30 09:28:16 -05:00
commit 447c48ea27

View File

@ -1,6 +1,6 @@
/* globals PDFJS, expect, it, describe, Promise, combineUrl, /* globals PDFJS, expect, it, describe, Promise, combineUrl, beforeAll,
InvalidPDFException, MissingPDFException, StreamType, FontType, InvalidPDFException, MissingPDFException, StreamType, FontType,
PDFDocumentProxy, PasswordException, PasswordResponses, PDFDocumentProxy, PasswordException, PasswordResponses, afterAll,
PDFPageProxy, createPromiseCapability, beforeEach, afterEach */ PDFPageProxy, createPromiseCapability, beforeEach, afterEach */
'use strict'; 'use strict';
@ -310,7 +310,7 @@ describe('api', function() {
var loadingTask; var loadingTask;
var doc; var doc;
beforeEach(function(done) { beforeAll(function(done) {
loadingTask = PDFJS.getDocument(basicApiUrl); loadingTask = PDFJS.getDocument(basicApiUrl);
loadingTask.promise.then(function(data) { loadingTask.promise.then(function(data) {
doc = data; doc = data;
@ -318,7 +318,7 @@ describe('api', function() {
}); });
}); });
afterEach(function() { afterAll(function() {
loadingTask.destroy(); loadingTask.destroy();
}); });
@ -680,7 +680,7 @@ describe('api', function() {
var loadingTask; var loadingTask;
var pdfDocument, page; var pdfDocument, page;
beforeEach(function(done) { beforeAll(function(done) {
loadingTask = PDFJS.getDocument(basicApiUrl); loadingTask = PDFJS.getDocument(basicApiUrl);
loadingTask.promise.then(function(doc) { loadingTask.promise.then(function(doc) {
pdfDocument = doc; pdfDocument = doc;
@ -693,7 +693,7 @@ describe('api', function() {
}); });
}); });
afterEach(function() { afterAll(function() {
loadingTask.destroy(); loadingTask.destroy();
}); });