mirror of
https://github.com/nasa/openmct.git
synced 2024-12-19 05:07:52 +00:00
67a1094a1f
* Change the centering algorithm for timelist Make duration formatting better * test: add time list countdown and countup test * test: respond to comments * chore: lint fix * fix: lint errors and visual suite failures * Change parameters to options object * Fix regression with auto scroll. Improve code readability * Add defaults for getPreciseDuration options object * Defaults for options * Add missing await --------- Co-authored-by: Jesse Mazzella <jesse.d.mazzella@nasa.gov>
20 lines
705 B
JavaScript
20 lines
705 B
JavaScript
/* eslint-disable prettier/prettier */
|
|
/**
|
|
* Constants which may be used across all e2e tests.
|
|
*/
|
|
|
|
/**
|
|
* Time Constants
|
|
* - Used for overriding the browser clock in tests.
|
|
*/
|
|
export const MISSION_TIME = 1732413600000; // Saturday, November 23, 2024 6:00:00 PM GMT-08:00 (Thanksgiving Dinner Time)
|
|
|
|
/**
|
|
* URL Constants
|
|
* - This is the URL that the browser will be directed to when running visual tests. This URL
|
|
* - hides the tree and inspector to prevent visual noise
|
|
* - sets the time bounds to a fixed range
|
|
*/
|
|
export const VISUAL_URL =
|
|
'./#/browse/mine?tc.mode=fixed&tc.startBound=1693592063607&tc.endBound=1693593893607&tc.timeSystem=utc&view=grid&hideInspector=true&hideTree=true';
|