mirror of
https://github.com/nasa/openmct.git
synced 2024-12-24 15:26:39 +00:00
20 lines
432 B
JavaScript
20 lines
432 B
JavaScript
|
/*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/
|
||
|
|
||
|
define(
|
||
|
["../src/ElasticIndicator"],
|
||
|
function (ElasticIndicator) {
|
||
|
"use strict";
|
||
|
|
||
|
describe("The ElasticSearch status indicator", function () {
|
||
|
var mockHttp,
|
||
|
mockInterval,
|
||
|
testPath,
|
||
|
testInterval,
|
||
|
mockPromise,
|
||
|
indicator;
|
||
|
|
||
|
|
||
|
|
||
|
});
|
||
|
}
|
||
|
);
|