6967b9dd96
This patch first of all enables linting of the files in the `test/font/` folder, and secondly it also re-factors all test files to use native `import`/`export` statements. Finally, all tests are now loaded correctly, rather than being included as scripts through the `font_test.html` file.
18 lines
596 B
HTML
18 lines
596 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>pdf.js unit test</title>
|
|
|
|
<link rel="stylesheet" type="text/css" href="../../node_modules/jasmine-core/lib/jasmine-core/jasmine.css">
|
|
|
|
<script src="../../node_modules/systemjs/dist/system.js"></script>
|
|
<script src="../../systemjs.config.js"></script>
|
|
<script src="../../node_modules/jasmine-core/lib/jasmine-core/jasmine.js"></script>
|
|
<script src="../../node_modules/jasmine-core/lib/jasmine-core/jasmine-html.js"></script>
|
|
<script src="../unit/testreporter.js"></script>
|
|
<script src="jasmine-boot.js"></script>
|
|
</head>
|
|
<body>
|
|
</body>
|
|
</html>
|