test('should set a 0 opacity at 0', () => {
    const element = document.createElement('div');
    window.getComputedStyle = jest.fn();
    window.getComputedStyle.mockImplementation(() => ({
      opacity: '0'