mirror of
https://github.com/nasa/openmct.git
synced 2024-12-21 14:07:50 +00:00
9bc05f27a5
Add skeleton specs for browse mode. WTD-574.
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 () {
|
|
|
|
});
|
|
}
|
|
); |