mirror of
https://github.com/mozilla/pdf.js.git
synced 2025-04-20 15:18:08 +02:00
Add unit test files to lint.
And fix the lint warnings from obj_spec.js.
This commit is contained in:
parent
27ba65dc6f
commit
168e5db2fd
2 changed files with 6 additions and 6 deletions
|
@ -3,11 +3,11 @@
|
|||
|
||||
'use strict';
|
||||
|
||||
describe("obj", function() {
|
||||
describe('obj', function() {
|
||||
|
||||
describe("Name", function() {
|
||||
it("should retain the given name", function() {
|
||||
var givenName = "Font";
|
||||
describe('Name', function() {
|
||||
it('should retain the given name', function() {
|
||||
var givenName = 'Font';
|
||||
var name = new Name(givenName);
|
||||
expect(name.name).toEqual(givenName);
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue