summaryrefslogtreecommitdiffstats
path: root/devtools/client/responsive/test/xpcshell/test_change_pixel_ratio.js
blob: d462cf39ccec393c2cb6803834f066c3e27daf5e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/* Any copyright is dedicated to the Public Domain.
   http://creativecommons.org/publicdomain/zero/1.0/ */

"use strict";

// Test changing the viewport pixel ratio.

const {
  addViewport,
  changePixelRatio,
} = require("resource://devtools/client/responsive/actions/viewports.js");
const NEW_PIXEL_RATIO = 5.5;

add_task(async function () {
  const store = Store();
  const { getState, dispatch } = store;

  dispatch(addViewport());
  dispatch(changePixelRatio(0, NEW_PIXEL_RATIO));

  const viewport = getState().viewports[0];
  equal(
    viewport.pixelRatio,
    NEW_PIXEL_RATIO,
    `Viewport's pixel ratio changed to ${NEW_PIXEL_RATIO}`
  );
});