1
0
Fork 0
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:
Kalervo Kujala 2011-11-26 20:35:46 +02:00
parent 27ba65dc6f
commit 168e5db2fd
2 changed files with 6 additions and 6 deletions

View file

@ -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);
});