Skip to content
Snippets Groups Projects
Commit 4dd988f7 authored by Adrian Orłów's avatar Adrian Orłów :fire:
Browse files

Merge branch 'fix/MIN-236-hotfix-const' into 'development'

hotfix: invalid const value (MIN-236)

Closes MIN-236

See merge request !125
parents 9f88a02d f5d68319
No related branches found
No related tags found
2 merge requests!223reset the pin numbers before search results are fetch (so the results will be...,!125hotfix: invalid const value (MIN-236)
Pipeline #85459 passed
......@@ -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);');
});
......
......@@ -15,4 +15,4 @@ export const THIRD_ARRAY_ELEMENT = 2;
export const NOOP = (): void => {};
export const ONE_DECIMAL = 0.1;
export const ONE_HUNDRED = 0.1;
export const ONE_HUNDRED = 100;
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment