[Core] Add skeleton specs

Add skeleton specs for platform/core, WTD-573.
This commit is contained in:
Victor Woeltjen
2014-11-20 16:15:16 -08:00
parent 71815242e2
commit a797ae8a69
23 changed files with 344 additions and 2 deletions

View File

@@ -0,0 +1,15 @@
/*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/
/**
* ViewCapabilitySpec. Created by vwoeltje on 11/6/14.
*/
define(
["../../src/views/ViewCapability"],
function (ViewCapability) {
"use strict";
describe("A view capability", function () {
});
}
);