mirror of
https://github.com/nasa/openmct.git
synced 2025-01-03 11:54:10 +00:00
15 lines
324 B
JavaScript
15 lines
324 B
JavaScript
|
/*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/
|
||
|
|
||
|
/**
|
||
|
* MCTRepresentationSpec. Created by vwoeltje on 11/6/14.
|
||
|
*/
|
||
|
define(
|
||
|
["../../src/creation/CreationService"],
|
||
|
function (CreationService) {
|
||
|
"use strict";
|
||
|
|
||
|
describe("The creation service", function () {
|
||
|
|
||
|
});
|
||
|
}
|
||
|
);
|