1
0
Fork 0
mirror of https://github.com/mozilla/pdf.js.git synced 2025-04-26 10:08:06 +02:00

Convert the files in the /test/unit folder to ES6 modules

This commit is contained in:
Tim van der Meij 2017-04-16 22:30:27 +02:00
parent 06c93d8fbd
commit 35730148a7
No known key found for this signature in database
GPG key ID: 8C3FD2925A5F2762
23 changed files with 139 additions and 521 deletions

View file

@ -12,25 +12,11 @@
* 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/dom_utils_spec', ['exports',
'pdfjs/display/dom_utils', 'pdfjs/display/global'], factory);
} else if (typeof exports !== 'undefined') {
factory(exports, require('../../src/display/dom_utils.js'),
require('../../src/display/global.js'));
} else {
factory((root.pdfjsTestUnitDOMUtilsSpec = {}), root.pdfjsDisplayDOMUtils,
root.pdfjsDisplayGlobal);
}
}(this, function (exports, displayDOMUtils, displayGlobal) {
var PDFJS = displayGlobal.PDFJS;
var getFilenameFromUrl = displayDOMUtils.getFilenameFromUrl;
var LinkTarget = displayDOMUtils.LinkTarget;
var isExternalLinkTargetSet = displayDOMUtils.isExternalLinkTargetSet;
import {
getFilenameFromUrl, isExternalLinkTargetSet, LinkTarget
} from '../../src/display/dom_utils';
import { PDFJS } from '../../src/display/global';
describe('dom_utils', function() {
describe('getFilenameFromUrl', function() {
@ -82,4 +68,3 @@ describe('dom_utils', function() {
});
});
});
}));