move stray test into the first suite

This commit is contained in:
Joe Fleming 2015-05-26 16:00:46 -07:00
parent c111977e38
commit 1c36dd55e5

View file

@ -37,11 +37,11 @@ define(function (require) {
checker.destroy();
});
it('is an event emitter', function () {
expect(checker).to.be.a(EventEmitter);
});
describe('basic functionality', function () {
it('is an event emitter', function () {
expect(checker).to.be.a(EventEmitter);
});
describe('instantiation', function () {
it('listens for the "reflow" event of the reflowWatchers', function () {
expect(reflowSpies.on).to.have.property('callCount', 1);
var call = reflowSpies.on.getCall(0);