it('button shoould start glowing', () => {
let clock = sinon.useFakeTimers();
const wrapper = mount(<PlayButton media={{ currentTime: 0, duration: 1 }}/>);
wrapper.update()
clock.tick(3000)
expect(wrapper.state('glow')).toBe(true);
});