Files
openmct/platform/core/test/objects/DomainObjectSpec.js
Victor Woeltjen a797ae8a69 [Core] Add skeleton specs
Add skeleton specs for platform/core, WTD-573.
2014-11-20 16:15:16 -08:00

15 lines
292 B
JavaScript

/*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/
/**
* DomainObjectSpec. Created by vwoeltje on 11/6/14.
*/
define(
["../../src/objects/DomainObject"],
function (DomainObject) {
"use strict";
describe("", function () {
});
}
);