mirror of
https://github.com/nasa/openmct.git
synced 2024-12-21 06:03:08 +00:00
31 lines
676 B
JavaScript
31 lines
676 B
JavaScript
|
/*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/
|
||
|
|
||
|
/**
|
||
|
* MCTIncudeSpec. Created by vwoeltje on 11/6/14.
|
||
|
*/
|
||
|
define(
|
||
|
["../src/DialogService"],
|
||
|
function (DialogService) {
|
||
|
"use strict";
|
||
|
|
||
|
describe("The dialog service", function () {
|
||
|
|
||
|
it("adds an overlay when user input is requested", function () {
|
||
|
|
||
|
});
|
||
|
|
||
|
it("allows user input to be canceled", function () {
|
||
|
|
||
|
});
|
||
|
|
||
|
it("passes back the result of user input when confirmed", function () {
|
||
|
|
||
|
});
|
||
|
|
||
|
it("logs a warning when a dialog is already showing", function () {
|
||
|
|
||
|
});
|
||
|
|
||
|
});
|
||
|
}
|
||
|
);
|