mirror of
https://github.com/FoggedLens/iD.git
synced 2026-02-13 17:23:02 +00:00
12 lines
187 B
JavaScript
12 lines
187 B
JavaScript
describe('Connection', function() {
|
|
var c;
|
|
|
|
beforeEach(function() {
|
|
c = new iD.Connection();
|
|
});
|
|
|
|
it('is instantiated', function() {
|
|
expect(c).toBeTruthy();
|
|
});
|
|
});
|