mirror of
https://github.com/mozilla/pdf.js.git
synced 2025-04-20 15:18:08 +02:00
Add jasmine files to external-directory.
This commit is contained in:
parent
94a64eece9
commit
624a7a74ea
6 changed files with 3239 additions and 6 deletions
|
@ -7,7 +7,7 @@ describe("obj", function() {
|
|||
|
||||
describe("Name", function() {
|
||||
it("should retain the given name", function() {
|
||||
var givenName = "My Name";
|
||||
var givenName = "Font";
|
||||
var name = new Name(givenName);
|
||||
expect(name.name).toEqual(givenName);
|
||||
});
|
|
@ -3,14 +3,14 @@
|
|||
<head>
|
||||
<title>pdf.js unit test</title>
|
||||
|
||||
<link rel="shortcut icon" type="image/png" href="../../../jasmine/images/jasmine_favicon.png">
|
||||
<link rel="stylesheet" type="text/css" href="../../../jasmine/lib/jasmine-core/jasmine.css">
|
||||
<link rel="shortcut icon" type="image/png" href="../../external/jasmine/jasmine_favicon.png">
|
||||
<link rel="stylesheet" type="text/css" href="../../external/jasmine/jasmine.css">
|
||||
|
||||
<script type="text/javascript" src="../../../jasmine/lib/jasmine-core/jasmine.js"></script>
|
||||
<script type="text/javascript" src="../../../jasmine/lib/jasmine-core/jasmine-html.js"></script>
|
||||
<script type="text/javascript" src="../../external/jasmine/jasmine.js"></script>
|
||||
<script type="text/javascript" src="../../external/jasmine/jasmine-html.js"></script>
|
||||
|
||||
<!-- include spec files here... -->
|
||||
<script type="text/javascript" src="spec/obj_spec.js"></script>
|
||||
<script type="text/javascript" src="obj_spec.js"></script>
|
||||
|
||||
<!-- include source files here... -->
|
||||
<script type="text/javascript" src="../../src/obj.js"></script>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue