mirror of
https://github.com/nasa/openmct.git
synced 2025-06-10 19:31:42 +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',
|
'removeClass',
|
||||||
'css',
|
'css',
|
||||||
'after',
|
'after',
|
||||||
'remove'
|
'remove',
|
||||||
|
'parent'
|
||||||
];
|
];
|
||||||
|
|
||||||
xdescribe("ConductorRepresenter", function () {
|
xdescribe("ConductorRepresenter", function () {
|
||||||
@ -75,6 +76,7 @@ define(
|
|||||||
testViews = [ { someKey: "some value" } ];
|
testViews = [ { someKey: "some value" } ];
|
||||||
mockScope = jasmine.createSpyObj('scope', SCOPE_METHODS);
|
mockScope = jasmine.createSpyObj('scope', SCOPE_METHODS);
|
||||||
mockElement = jasmine.createSpyObj('element', ELEMENT_METHODS);
|
mockElement = jasmine.createSpyObj('element', ELEMENT_METHODS);
|
||||||
|
mockElement.parent.andReturn(mockElement);
|
||||||
mockConductor = new TestTimeConductor();
|
mockConductor = new TestTimeConductor();
|
||||||
mockCompiledTemplate = jasmine.createSpy('template');
|
mockCompiledTemplate = jasmine.createSpy('template');
|
||||||
mockNewScope = jasmine.createSpyObj('newScope', SCOPE_METHODS);
|
mockNewScope = jasmine.createSpyObj('newScope', SCOPE_METHODS);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user