mirror of
https://github.com/nasa/openmct.git
synced 2024-12-19 05:07:52 +00:00
2a1064cbab
* Add a VISUAL_URL constant and remove all vestiges of hide inspector and tree * hide timer and add concurrency * turn off concurrency * factor out old appAction * Add expand button to panes * remove old slow annotations * fix fault * update domcontentloaded * missed refactor * driveby: setTimeBounds private * add comments to the percyCSS * suggest MISSION_TIME * more notes * regen * clean up test * driveby: clean up order * restructure * add new suite now that i'ts hidden * use mission time everywhere possible * driveby * rerun generatedata * comments * lintfix
19 lines
704 B
JavaScript
19 lines
704 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';
|