All files / platform/core/src/enums TimingEnum.ts

100% Statements 2/2
100% Branches 0/0
100% Functions 1/1
100% Lines 1/1

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25204x                                                
export enum TimingEnum {
  // The time from when the users selects a study until the study metadata
  // is loaded (and the display sets are ready)
  STUDY_TO_DISPLAY_SETS = 'studyToDisplaySetsLoaded',
 
  // The time from when the user selects a study until any viewport renders
  STUDY_TO_FIRST_IMAGE = 'studyToFirstImage',
 
  // The time from when display sets are loaded until any viewport renders
  // an image.
  DISPLAY_SETS_TO_FIRST_IMAGE = 'displaySetsToFirstImage',
 
  // The time from when display sets are loaded until all viewports have images
  DISPLAY_SETS_TO_ALL_IMAGES = 'displaySetsToAllImages',
 
  // The time from when the user hits search until the worklist is displayed
  SEARCH_TO_LIST = 'searchToList',
 
  // The time from when the html script first starts being evaluated (before
  // any other scripts or CSS is loaded), until the time that the first image
  // is viewed for viewer endpoints, or the time that the first search for studies
  // completes.
  SCRIPT_TO_VIEW = 'scriptToView',
}