it("should display text", function() {
    const item = shallow(
      <MomentNoteItem id={1} title="gary oak" text="text" />
    );
    expect(item.find("p").text()).toBe("text");