mirror of
https://github.com/nasa/openmct.git
synced 2024-12-30 09:58:52 +00:00
15 lines
323 B
JavaScript
15 lines
323 B
JavaScript
|
/*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/
|
||
|
|
||
|
/**
|
||
|
* MCTRepresentationSpec. Created by vwoeltje on 11/6/14.
|
||
|
*/
|
||
|
define(
|
||
|
["../../src/navigation/NavigateAction"],
|
||
|
function (NavigateAction) {
|
||
|
"use strict";
|
||
|
|
||
|
describe("The navigate action", function () {
|
||
|
|
||
|
});
|
||
|
}
|
||
|
);
|