mirror of
https://github.com/grafana/grafana.git
synced 2025-09-21 13:32:52 +08:00
tslint: autofix of let -> const (#13033)
This commit is contained in:
@ -3,13 +3,13 @@ import { PostgresDatasource } from '../datasource';
|
||||
import { CustomVariable } from 'app/features/templating/custom_variable';
|
||||
|
||||
describe('PostgreSQLDatasource', function() {
|
||||
let instanceSettings = { name: 'postgresql' };
|
||||
const instanceSettings = { name: 'postgresql' };
|
||||
|
||||
let backendSrv = {};
|
||||
let templateSrv = {
|
||||
const backendSrv = {};
|
||||
const templateSrv = {
|
||||
replace: jest.fn(text => text),
|
||||
};
|
||||
let ctx = <any>{
|
||||
const ctx = <any>{
|
||||
backendSrv,
|
||||
};
|
||||
|
||||
|
Reference in New Issue
Block a user