mirror of
https://github.com/nasa/openmct.git
synced 2024-12-22 22:42:24 +00:00
23 lines
484 B
JavaScript
23 lines
484 B
JavaScript
|
/*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/
|
||
|
|
||
|
/**
|
||
|
* MCTIncudeSpec. Created by vwoeltje on 11/6/14.
|
||
|
*/
|
||
|
define(
|
||
|
["../src/OverlayService"],
|
||
|
function (OverlayService) {
|
||
|
"use strict";
|
||
|
|
||
|
describe("The dialog service", function () {
|
||
|
|
||
|
it("prepends an mct-include to create overlays", function () {
|
||
|
|
||
|
});
|
||
|
|
||
|
it("removes the prepended element on request", function () {
|
||
|
|
||
|
});
|
||
|
|
||
|
});
|
||
|
}
|
||
|
);
|