Source code
Revision control
Copy as Markdown
Other Tools
import { DSMessage } from "content-src/components/DiscoveryStreamComponents/DSMessage/DSMessage";
import React from "react";
import { SafeAnchor } from "content-src/components/DiscoveryStreamComponents/SafeAnchor/SafeAnchor";
import { FluentOrText } from "content-src/components/FluentOrText/FluentOrText";
import { mount } from "enzyme";
describe("<DSMessage>", () => {
let wrapper;
beforeEach(() => {
wrapper = mount(<DSMessage />);
});
it("should render", () => {
assert.ok(wrapper.exists());
assert.ok(wrapper.find(".ds-message").exists());
});
it("should render an icon", () => {
wrapper.setProps({ icon: "foo" });
assert.ok(wrapper.find(".glyph").exists());
assert.propertyVal(
wrapper.find(".glyph").props().style,
"backgroundImage",
`url(foo)`
);
});
it("should render a title", () => {
wrapper.setProps({ title: "foo" });
assert.ok(wrapper.find(".title-text").exists());
assert.equal(wrapper.find(".title-text").text(), "foo");
});
it("should render a SafeAnchor", () => {
assert.equal(wrapper.find(".title").children().at(0).type(), SafeAnchor);
});
it("should render a FluentOrText", () => {
wrapper.setProps({
link_text: "link_text",
title: "title",
});
assert.equal(
wrapper.find(".title-text").children().at(0).type(),
FluentOrText
);
assert.equal(wrapper.find(".link a").children().at(0).type(), FluentOrText);
});
});