mirror of
https://github.com/nasa/openmct.git
synced 2024-12-28 08:58:52 +00:00
c932e953bc
WTD-1239
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));
|
|
});
|
|
});
|
|
}
|
|
); |