mirror of
https://github.com/FoggedLens/iD.git
synced 2026-04-30 23:47:59 +02:00
f19e5196b3
Rewrite Entities and object creators.
12 lines
203 B
JavaScript
12 lines
203 B
JavaScript
describe('Entity', function() {
|
|
var entity;
|
|
|
|
beforeEach(function() {
|
|
entity = iD.Entity();
|
|
});
|
|
|
|
it('has no entity type', function() {
|
|
expect(entity.entityType).toEqual('');
|
|
});
|
|
});
|