hazdev-template
Version:
Template for HazDev web sites.
16 lines (12 loc) • 334 B
JavaScript
/* global chai, describe, it, LinkUpdater */
;
var expect = chai.expect;
describe('Unit tests for the LinkUpdater Class', function () {
describe('Constructor', function(){
it('exists', function() {
/* jshint -W030 */
expect(LinkUpdater).not.to.be.undefined;
/* jshint +W030 */
});
});
});