mirror of
https://github.com/nasa/openmct.git
synced 2024-12-21 14:07:50 +00:00
52ec1aeb89
Complete remaining specs to achieve full test coverage for common user interface bundles being transitioned as part of WTD-574.
40 lines
1.1 KiB
JavaScript
40 lines
1.1 KiB
JavaScript
/*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine,afterEach,screenfull*/
|
|
|
|
/**
|
|
* MCTRepresentationSpec. Created by vwoeltje on 11/6/14.
|
|
*/
|
|
define(
|
|
["../../src/windowing/FullscreenAction"],
|
|
function (FullscreenAction) {
|
|
"use strict";
|
|
|
|
describe("The fullscreen action", function () {
|
|
var action,
|
|
oldToggle;
|
|
|
|
beforeEach(function () {
|
|
// Screenfull is not shimmed or injected, so
|
|
// we need to spy on it in the global scope.
|
|
oldToggle = screenfull.toggle;
|
|
|
|
screenfull.toggle = jasmine.createSpy("toggle");
|
|
|
|
action = new FullscreenAction({});
|
|
});
|
|
|
|
afterEach(function () {
|
|
screenfull.toggle = oldToggle;
|
|
});
|
|
|
|
it("toggles fullscreen mode when performed", function () {
|
|
action.perform();
|
|
expect(screenfull.toggle).toHaveBeenCalled();
|
|
});
|
|
|
|
it("provides displayable metadata", function () {
|
|
expect(action.getMetadata().glyph).toBeDefined();
|
|
});
|
|
|
|
});
|
|
}
|
|
); |