mirror of
https://github.com/nasa/openmct.git
synced 2024-12-22 06:27:48 +00:00
15 lines
340 B
JavaScript
15 lines
340 B
JavaScript
|
/*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/
|
||
|
|
||
|
/**
|
||
|
* MCTRepresentationSpec. Created by vwoeltje on 11/6/14.
|
||
|
*/
|
||
|
define(
|
||
|
["../../src/creation/CreateMenuController"],
|
||
|
function (CreateActionProvider) {
|
||
|
"use strict";
|
||
|
|
||
|
describe("The create menu controller", function () {
|
||
|
|
||
|
});
|
||
|
}
|
||
|
);
|