enable a test case

This commit is contained in:
Jeff Williams 2014-10-12 13:32:15 -07:00
parent 68ceb33ec3
commit 8f231c12b5

View File

@ -1,4 +1,4 @@
/*global describe, expect, it, jasmine, xit */
/*global describe, expect, it, jasmine */
'use strict';
describe('@enum tag', function() {
@ -26,8 +26,7 @@ describe('@enum tag', function() {
expect(tristate.properties[2].type.names.join(', ')).toBe('boolean');
});
// TODO: reenable after fixing circular-reference issues
xit('An enum does not contain any circular references.', function() {
it('An enum does not contain any circular references.', function() {
var dump = require('jsdoc/util/dumper').dump;
expect( dump(tristate) ).not.toMatch('<CircularRef>');