it("should show a play icon when paused", function () {
      const button = shallow(<PlayButton isPlaying={false} />);
      expect(button.find("img").hasClass("play")).toBe(true);
      expect(button.find("img").hasClass("pause")).toBe(false);
    });