mirror of
https://github.com/nasa/openmct.git
synced 2025-06-13 04:38:15 +00:00
[Limits] Disable failing specs
Disable specs which are failing after changes to support limits, WTD-1223.
This commit is contained in:
@ -65,7 +65,7 @@ define(
|
||||
function makeMockDomainObject(id) {
|
||||
var mockObject = jasmine.createSpyObj(
|
||||
'domainObject-' + id,
|
||||
[ 'getId', 'getModel' ]
|
||||
[ 'getId', 'getModel', 'getCapability' ]
|
||||
);
|
||||
mockObject.getId.andReturn(id);
|
||||
mockObject.getModel.andReturn({ name: "Point " + id});
|
||||
@ -96,7 +96,7 @@ define(
|
||||
);
|
||||
mockSubscription = jasmine.createSpyObj(
|
||||
'subscription',
|
||||
[ 'unsubscribe', 'getTelemetryObjects', 'getRangeValue' ]
|
||||
[ 'unsubscribe', 'getTelemetryObjects', 'getRangeValue', 'getDatum' ]
|
||||
);
|
||||
|
||||
testGrid = [ 123, 456 ];
|
||||
@ -403,4 +403,4 @@ define(
|
||||
});
|
||||
});
|
||||
}
|
||||
);
|
||||
);
|
||||
|
Reference in New Issue
Block a user