it('shows the comment text in markdown', () => {
    const component = renderIntoDocument(<Comment author="Frank" text="Hi!" />);

    const comment = findRenderedDOMComponentWithClass(component, 'js-comment-text');
    expect(comment.textContent).toEqual('Hi!\n');