Skip to content
Snippets Groups Projects

hotfix: invalid const value (MIN-236)

Merged Adrian Orłów requested to merge fix/MIN-236-hotfix-const into development
2 files
+ 3
3
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -56,7 +56,7 @@ describe('OverlayAxis - component', () => {
expect(bar).toBeInTheDocument();
expect(bar?.getAttribute('class')).toContain('rounded-r');
expect(bar?.getAttribute('class')).toContain('left-1/2');
expect(bar?.getAttribute('style')).toContain('width: 0.028211717200000003%;');
expect(bar?.getAttribute('style')).toContain('width: 28.211717200000002%;');
expect(bar?.getAttribute('style')).toContain('background: rgb(255, 0, 0);');
});
@@ -82,7 +82,7 @@ describe('OverlayAxis - component', () => {
expect(bar).toBeInTheDocument();
expect(bar?.getAttribute('class')).toContain('rounded-l');
expect(bar?.getAttribute('class')).toContain('right-1/2');
expect(bar?.getAttribute('style')).toContain('width: 0.016276616115%;');
expect(bar?.getAttribute('style')).toContain('width: 16.276616115%;');
expect(bar?.getAttribute('style')).toContain('background: rgb(0, 255, 0);');
});
Loading