openmct/platform/commonUI/dialog/test/DialogServiceSpec.js

31 lines
676 B
JavaScript
Raw Normal View History

/*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 () {
});
});
}
);