Files
iD/test/spec/Connection.js
2012-10-16 20:54:46 -04:00

12 lines
187 B
JavaScript

describe('Connection', function() {
var c;
beforeEach(function() {
c = new iD.Connection();
});
it('is instantiated', function() {
expect(c).toBeTruthy();
});
});