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