mirror of
https://github.com/nasa/openmct.git
synced 2024-12-23 23:12:23 +00:00
c55f9ff092
Add empty specs for new scripts introduced to support revision checking and Overwrite/Discard dialog, WTD-1033.
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;
|
|
|
|
|
|
|
|
});
|
|
}
|
|
); |