mirror of
https://github.com/nasa/openmct.git
synced 2025-01-06 13:18:44 +00:00
d33344dacd
Add tests for controllers introduced to support a minimal implementation of an About dialog, WTD-667.
32 lines
961 B
JavaScript
32 lines
961 B
JavaScript
/*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/
|
|
|
|
define(
|
|
['../src/LogoController'],
|
|
function (LogoController) {
|
|
"use strict";
|
|
|
|
describe("The About controller", function () {
|
|
var mockOverlayService,
|
|
controller;
|
|
|
|
beforeEach(function () {
|
|
mockOverlayService = jasmine.createSpyObj(
|
|
"overlayService",
|
|
["createOverlay"]
|
|
);
|
|
controller = new LogoController(mockOverlayService);
|
|
});
|
|
|
|
it("shows the about dialog", function () {
|
|
//Verify precondition
|
|
expect(mockOverlayService.createOverlay)
|
|
.not.toHaveBeenCalled();
|
|
controller.showAboutDialog();
|
|
expect(mockOverlayService.createOverlay)
|
|
.toHaveBeenCalledWith("overlay-about");
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
); |