mirror of
https://github.com/nasa/openmct.git
synced 2024-12-31 18:36:57 +00:00
13 lines
318 B
JavaScript
13 lines
318 B
JavaScript
|
/*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/
|
||
|
|
||
|
define(
|
||
|
["../src/BottomBarController"],
|
||
|
function (BottomBarController) {
|
||
|
"use strict";
|
||
|
|
||
|
describe("The bottom bar controller", function () {
|
||
|
var testIndicators,
|
||
|
controller;
|
||
|
});
|
||
|
}
|
||
|
);
|