[Framework] Add skeleton specs

Add empty specs for all classes introduced for the
framework layer, WTD-518.

Note that Main is omitted, as this launches the full
application.
This commit is contained in:
Victor Woeltjen
2014-11-06 08:03:35 -08:00
parent b0bd9c5cf1
commit e2f8b1eef9
14 changed files with 209 additions and 1 deletions

View File

@ -0,0 +1,15 @@
/*global define,Promise,describe,it,expect,beforeEach*/
/**
* ApplicationBootstrapperSpec. Created by vwoeltje on 11/6/14.
*/
define(
[],
function () {
"use strict";
describe("", function () {
});
}
);