mirror of
https://github.com/nasa/openmct.git
synced 2024-12-20 21:53:08 +00:00
c932e953bc
WTD-1239
15 lines
446 B
JavaScript
15 lines
446 B
JavaScript
/*global define,describe,it,expect,beforeEach,waitsFor,jasmine,window,afterEach*/
|
|
|
|
define(
|
|
['../src/TimelineConstants'],
|
|
function (TimelineConstants) {
|
|
"use strict";
|
|
describe("The set of Timeline constants", function () {
|
|
it("specifies a handle width", function () {
|
|
expect(TimelineConstants.HANDLE_WIDTH)
|
|
.toEqual(jasmine.any(Number));
|
|
});
|
|
});
|
|
}
|
|
);
|