mirror of
https://github.com/nasa/openmct.git
synced 2024-12-30 09:58:52 +00:00
4586146da2
Remove specs which fail due to refactoring for WTD-625.
25 lines
599 B
JavaScript
25 lines
599 B
JavaScript
/*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/
|
|
|
|
/**
|
|
* MergeModelsSpec. Created by vwoeltje on 11/6/14.
|
|
*/
|
|
define(
|
|
["../src/SubPlot"],
|
|
function (SubPlot) {
|
|
"use strict";
|
|
|
|
describe("A sub-plot", function () {
|
|
var subplot;
|
|
|
|
|
|
it("provides coordinates on hover", function () {
|
|
// expect(subplot.getHoverCoordinates().length).toEqual(0);
|
|
//
|
|
// subplot.hover({ target: mockElement });
|
|
//
|
|
// expect(subplot.getHoverCoordinates().length).toEqual(2);
|
|
});
|
|
|
|
});
|
|
}
|
|
); |