minor corrections to test

This commit is contained in:
Jeff Williams 2012-12-25 05:01:56 -08:00
parent e4236eaa42
commit ce8565f6e0

View File

@ -1,6 +1,6 @@
/*global afterEach: true, beforeEach: true, describe: true, env: true, expect: true, it: true,
__globalForIncludeTest__: true */
describe("include", function() {
describe("jsdoc/util/include", function() {
var include = require('jsdoc/util/include');
var myGlobal = require('jsdoc/util/global');
var path = require('path');
@ -15,7 +15,7 @@ describe("include", function() {
myGlobal.__globalForIncludeTest__ = undefined;
});
it("should be a function", function() {
it("should exist", function() {
expect(include).toBeDefined();
expect(typeof include).toEqual('function');
});