[Common UI] Add skeleton specs for edit mode

Add empty files which will contain specs for
bundle platform/commonUI/edit, which is responsible
for Edit mode. WTD-574.
This commit is contained in:
Victor Woeltjen
2014-11-24 17:01:37 -08:00
parent 80430234d6
commit 88f3221938
14 changed files with 230 additions and 12 deletions

View File

@ -0,0 +1,12 @@
/*global define,describe,it,expect,beforeEach,jasmine*/
define(
["../../src/objects/EditableDomainObject"],
function (EditableDomainObject) {
"use strict";
describe("Editable domain object", function () {
});
}
);