mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
dashboard: fix linting and formating - #10100
This commit is contained in:
parent
cb0dac11a3
commit
58fb35c5cb
@ -1,7 +1,12 @@
|
||||
import { SearchCtrl } from './search';
|
||||
import { SearchSrv } from 'app/core/services/search_srv';
|
||||
|
||||
describe('SearchCtrl', () => {
|
||||
let ctrl = new SearchCtrl({}, {}, {}, {}, { onAppEvent: () => { } });
|
||||
const searchSrvStub = {
|
||||
search: (options: any) => {},
|
||||
getDashboardTags: () => {}
|
||||
};
|
||||
let ctrl = new SearchCtrl({}, {}, {}, <SearchSrv>searchSrvStub, { onAppEvent: () => { } });
|
||||
|
||||
describe('Given an empty result', () => {
|
||||
beforeEach(() => {
|
||||
|
Loading…
Reference in New Issue
Block a user