mirror of
https://github.com/FoggedLens/iD.git
synced 2026-04-29 15:16:07 +02:00
75d9331233
Adds GeoJSON viewing to features, unifies the way that features refer to their children.
12 lines
186 B
JavaScript
12 lines
186 B
JavaScript
describe('Relation', function() {
|
|
var rm;
|
|
|
|
beforeEach(function() {
|
|
rm = new iD.Relation();
|
|
});
|
|
|
|
it('is instantiated', function() {
|
|
expect(rm).toBeTruthy();
|
|
});
|
|
});
|