summaryrefslogtreecommitdiffstats
path: root/devtools/client/inspector/compatibility/test/node/components/components-compatibility-UnsupportedBrowserList.test.js
blob: ca1848063800f2fa3d8e50f78bfb0d29de34f6ae (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
/* Any copyright is dedicated to the Public Domain.
   http://creativecommons.org/publicdomain/zero/1.0/ */

"use strict";

/**
 * Unit tests for the BrowserList component.
 */

const { shallow } = require("enzyme");
const React = require("react");

const UnsupportedBrowserList = React.createFactory(
  require("resource://devtools/client/inspector/compatibility/components/UnsupportedBrowserList.js")
);

describe("UnsupportedBrowserList component", () => {
  it("renders the browsers", () => {
    const list = shallow(
      UnsupportedBrowserList({
        browsers: [
          { id: "firefox", name: "Firefox", version: "69", status: "beta" },
          { id: "firefox", name: "Firefox", version: "70", status: "nightly" },
          { id: "test-browser", name: "Test Browser", version: "1" },
          { id: "test-browser", name: "Test Browser", version: "2" },
          { id: "sample-browser", name: "Sample Browser", version: "100" },
        ],
      })
    );
    expect(list).toMatchSnapshot();
  });

  it("does not show ESR version if newer version is not supported", () => {
    const list = shallow(
      UnsupportedBrowserList({
        browsers: [
          { id: "firefox", name: "Firefox", version: "102", status: "esr" },
          { id: "firefox", name: "Firefox", version: "112", status: "current" },
        ],
      })
    );
    expect(list).toMatchSnapshot();
  });

  it("shows ESR version if newer version is supported", () => {
    const list = shallow(
      UnsupportedBrowserList({
        browsers: [
          { id: "firefox", name: "Firefox", version: "102", status: "esr" },
          { id: "test-browser", name: "Test Browser", version: "1" },
        ],
      })
    );
    expect(list).toMatchSnapshot();
  });
});