mirror of
https://github.com/FoggedLens/iD.git
synced 2026-02-13 09:12:52 +00:00
12 lines
199 B
JavaScript
12 lines
199 B
JavaScript
describe('Relation Member', function() {
|
|
var rm;
|
|
|
|
beforeEach(function() {
|
|
rm = new iD.RelationMember();
|
|
});
|
|
|
|
it('is instantiated', function() {
|
|
expect(rm).toBeTruthy();
|
|
});
|
|
});
|