[Plot] Update/suppress specs

Update specs and suppress failures; intermediate commit
for updates to plot for WTD-751.
This commit is contained in:
Victor Woeltjen
2015-01-29 12:34:58 -08:00
parent a0137b341e
commit 4fb750c0e0
4 changed files with 15 additions and 31 deletions

View File

@ -57,7 +57,7 @@ define(
// Prepared telemetry data
mockPrepared = jasmine.createSpyObj(
"prepared",
[ "getDomainOffset", "getOrigin", "getDimensions", "getBuffers" ]
[ "getDomainOffset", "getOrigin", "getDimensions", "getBuffers", "getLength" ]
);
mockSubPlotFactory.createSubPlot.andCallFake(createMockSubPlot);
@ -68,6 +68,7 @@ define(
mockPrepared.getDomainOffset.andReturn(1234);
mockPrepared.getOrigin.andReturn([10, 10]);
mockPrepared.getDimensions.andReturn([500, 500]);
mockPrepared.getLength.andReturn(3);
// Objects that will be drawn to in sub-plots
testDrawingObjects = [];