mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Dashboard graph optimization. Fixes #3941
This commit is contained in:
committed by
Akshay Joshi
parent
dae8186c2a
commit
aad7830d37
@@ -73,6 +73,10 @@ describe('In charting related testcases', ()=> {
|
||||
expect(chartObj.getOtherData('some_val')).toEqual(1);
|
||||
});
|
||||
|
||||
it('Check if other data returns undefined for not set', ()=>{
|
||||
expect(chartObj.getOtherData('some_val_not_set')).toBe(undefined);
|
||||
});
|
||||
|
||||
it('Check if isVisible returns correct', ()=>{
|
||||
let dimSpy = spyOn(chartObj, 'getContainerDimensions');
|
||||
|
||||
|
||||
Reference in New Issue
Block a user