mirror of
https://github.com/grafana/grafana.git
synced 2024-11-30 12:44:10 -06:00
e924627659
* Detect frontend asset changes * Update * merge main * Frontend: Detect new assets / versions / config changes (#79258) * avoid first check * Updates and add tests * Update * Update * Updated code * refine * use context --------- Co-authored-by: Ryan McKinley <ryantxu@gmail.com>
31 lines
1.2 KiB
TypeScript
31 lines
1.2 KiB
TypeScript
import { GrafanaConfig } from '@grafana/data';
|
|
import { LocationService } from '@grafana/runtime';
|
|
import { AppChromeService } from 'app/core/components/AppChrome/AppChromeService';
|
|
import { GrafanaContextType } from 'app/core/context/GrafanaContext';
|
|
import { NewFrontendAssetsChecker } from 'app/core/services/NewFrontendAssetsChecker';
|
|
import { backendSrv } from 'app/core/services/backend_srv';
|
|
import { KeybindingSrv } from 'app/core/services/keybindingSrv';
|
|
|
|
/** Not sure what this should evolve into, just a starting point */
|
|
export function getGrafanaContextMock(overrides: Partial<GrafanaContextType> = {}): GrafanaContextType {
|
|
return {
|
|
chrome: new AppChromeService(),
|
|
backend: backendSrv,
|
|
// eslint-disable-next-line
|
|
location: {} as LocationService,
|
|
// eslint-disable-next-line
|
|
config: { featureToggles: {} } as GrafanaConfig,
|
|
// eslint-disable-next-line
|
|
keybindings: {
|
|
clearAndInitGlobalBindings: jest.fn(),
|
|
setupDashboardBindings: jest.fn(),
|
|
setupTimeRangeBindings: jest.fn(),
|
|
} as unknown as KeybindingSrv,
|
|
newAssetsChecker: {
|
|
start: jest.fn(),
|
|
reloadIfUpdateDetected: jest.fn(),
|
|
} as unknown as NewFrontendAssetsChecker,
|
|
...overrides,
|
|
};
|
|
}
|