[Limits] Disable failing specs

Disable specs which are failing after changes to support
limits, WTD-1223.
This commit is contained in:
Victor Woeltjen
2015-06-23 13:43:00 -07:00
parent a4ea0dd047
commit 065a5a6fbf
7 changed files with 25 additions and 24 deletions

View File

@ -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(
});
});
}
);
);