mirror of
https://github.com/nasa/openmct.git
synced 2025-06-22 09:08:43 +00:00
[Timer] Back-end code cleanup and removed unused code
Cleaned up code by removing unused and unneeded code and the tests associated with it
This commit is contained in:
@ -127,7 +127,6 @@ define(
|
||||
mockWindow.requestAnimationFrame.mostRecentCall.args[0]();
|
||||
expect(controller.sign()).toEqual("");
|
||||
expect(controller.text()).toEqual("");
|
||||
expect(controller.stopButtonText()).toEqual("");
|
||||
});
|
||||
|
||||
it("formats time to display relative to target", function () {
|
||||
@ -164,18 +163,6 @@ define(
|
||||
expect(controller.buttonText()).toEqual("Pause");
|
||||
});
|
||||
|
||||
it("shows cssclass & name for the stop action", function () {
|
||||
invokeWatch('domainObject', mockDomainObject);
|
||||
expect(controller.stopButtonCssClass()).toEqual("");
|
||||
expect(controller.stopButtonText()).toEqual("");
|
||||
|
||||
testModel.timestamp = 12321;
|
||||
testModel.timerState = 'started';
|
||||
invokeWatch('model.modified', 1);
|
||||
expect(controller.stopButtonCssClass()).toEqual("icon-box");
|
||||
expect(controller.stopButtonText()).toEqual("Stop");
|
||||
});
|
||||
|
||||
it("performs correct start/pause/stop action on click", function () {
|
||||
//test start
|
||||
invokeWatch('domainObject', mockDomainObject);
|
||||
|
Reference in New Issue
Block a user