unit test files as UMD modules
This commit is contained in:
parent
aabfb7788a
commit
d9e1cb7955
23 changed files with 727 additions and 129 deletions
|
@ -1,8 +1,48 @@
|
|||
/* globals OperatorList, WorkerTask, PartialEvaluator, StringStream, OPS, Dict,
|
||||
Name, Stream */
|
||||
|
||||
/* Copyright 2017 Mozilla Foundation
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
'use strict';
|
||||
|
||||
(function (root, factory) {
|
||||
if (typeof define === 'function' && define.amd) {
|
||||
define('pdfjs-test/unit/evaluator_spec', ['exports',
|
||||
'pdfjs/core/evaluator', 'pdfjs/core/primitives',
|
||||
'pdfjs/core/stream', 'pdfjs/core/worker',
|
||||
'pdfjs/shared/util'], factory);
|
||||
} else if (typeof exports !== 'undefined') {
|
||||
factory(exports, require('../../src/core/evaluator.js'),
|
||||
require('../../src/core/primitives.js'),
|
||||
require('../../src/core/stream.js'),
|
||||
require('../../src/core/worker.js'),
|
||||
require('../../src/shared/util.js'));
|
||||
} else {
|
||||
factory((root.pdfjsTestUnitEvaluatorSpec = {}), root.pdfjsCoreEvaluator,
|
||||
root.pdfjsCorePrimitives, root.pdfjsCoreStream,
|
||||
root.pdfjsCoreWorker, root.pdfjsSharedUtil);
|
||||
}
|
||||
}(this, function (exports, coreEvaluator, corePrimitives, coreStream,
|
||||
coreWorker, sharedUtil) {
|
||||
|
||||
var OperatorList = coreEvaluator.OperatorList;
|
||||
var PartialEvaluator = coreEvaluator.PartialEvaluator;
|
||||
var Dict = corePrimitives.Dict;
|
||||
var Name = corePrimitives.Name;
|
||||
var Stream = coreStream.Stream;
|
||||
var StringStream = coreStream.StringStream;
|
||||
var WorkerTask = coreWorker.WorkerTask;
|
||||
var OPS = sharedUtil.OPS;
|
||||
|
||||
describe('evaluator', function() {
|
||||
function XrefMock(queue) {
|
||||
this.queue = queue || [];
|
||||
|
@ -321,3 +361,4 @@ describe('evaluator', function() {
|
|||
});
|
||||
});
|
||||
});
|
||||
}));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue