mirror of
https://github.com/nasa/openmct.git
synced 2024-12-28 00:48:51 +00:00
15 lines
505 B
JavaScript
15 lines
505 B
JavaScript
|
/*global define,describe,it,expect,beforeEach,waitsFor,jasmine,window,afterEach*/
|
||
|
|
||
|
define(
|
||
|
['../../src/directives/SwimlaneDragConstants'],
|
||
|
function (SwimlaneDragConstants) {
|
||
|
"use strict";
|
||
|
|
||
|
describe("Timeline swimlane drag constants", function () {
|
||
|
it("define a custom type for swimlane drag-drop", function () {
|
||
|
expect(SwimlaneDragConstants.WARP_SWIMLANE_DRAG_TYPE)
|
||
|
.toEqual(jasmine.any(String));
|
||
|
});
|
||
|
});
|
||
|
}
|
||
|
);
|