mirror of
https://github.com/nasa/openmct.git
synced 2025-01-10 23:12:57 +00:00
1753aa6784
Add placeholder spec for the LocatorController, introduced to support forms used from the Create menu. Part of ongoing integration of forms bundle, WTD-593.
15 lines
330 B
JavaScript
15 lines
330 B
JavaScript
/*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/
|
|
|
|
/**
|
|
* MCTRepresentationSpec. Created by vwoeltje on 11/6/14.
|
|
*/
|
|
define(
|
|
["../../src/creation/LocatorController"],
|
|
function (LocatorController) {
|
|
"use strict";
|
|
|
|
describe("The locator controller", function () {
|
|
|
|
});
|
|
}
|
|
); |