All files / contracts/_enums standard-viewport.enum.ts

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

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 151x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x  
/**
 * A 7 standard viewport-azonosító, amit a `DyE2E_StandardViewportAudit` preset
 * fan-out-tal végigjár. Konkrét `width`/`height`/`deviceScaleFactor` a
 * `STANDARD_VIEWPORT_CATALOG` const-ban.
 */
export enum DyE2E_StandardViewport_Type {
  mobileS = 'mobile-s',           // 320 × 568   — iPhone SE
  mobileM = 'mobile-m',           // 375 × 667   — iPhone 12 mini
  mobileL = 'mobile-l',           // 414 × 896   — iPhone 11 Pro Max
  tabletPortrait = 'tablet-p',    // 768 × 1024  — iPad portrait
  tabletLandscape = 'tablet-l',   // 1024 × 768  — iPad landscape
  desktop = 'desktop',            // 1440 × 900  — Standard
  desktopWide = 'desktop-wide',   // 1920 × 1080 — Full HD
}