mirror of
https://github.com/nasa/openmct.git
synced 2024-12-20 05:37:53 +00:00
[New Edit Mode] Fixed failing Time Conductor Test
This commit is contained in:
parent
a023b0e19c
commit
193c7e3db2
@ -41,7 +41,8 @@ define(
|
||||
'removeClass',
|
||||
'css',
|
||||
'after',
|
||||
'remove'
|
||||
'remove',
|
||||
'parent'
|
||||
];
|
||||
|
||||
xdescribe("ConductorRepresenter", function () {
|
||||
@ -75,6 +76,7 @@ define(
|
||||
testViews = [ { someKey: "some value" } ];
|
||||
mockScope = jasmine.createSpyObj('scope', SCOPE_METHODS);
|
||||
mockElement = jasmine.createSpyObj('element', ELEMENT_METHODS);
|
||||
mockElement.parent.andReturn(mockElement);
|
||||
mockConductor = new TestTimeConductor();
|
||||
mockCompiledTemplate = jasmine.createSpy('template');
|
||||
mockNewScope = jasmine.createSpyObj('newScope', SCOPE_METHODS);
|
||||
|
Loading…
Reference in New Issue
Block a user