blob: 8e4f0b7a723e2e61fd406289887475a852c6d26f (
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
|
/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";
/**
* Unit tests for the NodeItem component.
*/
const { shallow } = require("enzyme");
const React = require("react");
const NodeItem = React.createFactory(
require("resource://devtools/client/inspector/compatibility/components/NodeItem.js")
);
describe("NodeItem component", () => {
it("renders a node", () => {
const pane = shallow(
NodeItem({
node: {
actorID: "test-actor",
attributes: [],
nodeName: "test-element",
nodeType: 1,
},
})
);
expect(pane).toMatchSnapshot();
});
});
|