tslint: autofix of let -> const (#13033)

This commit is contained in:
Torkel Ödegaard
2018-08-26 17:14:40 +02:00
committed by GitHub
parent 8a99fa269d
commit 9b978b7203
167 changed files with 1077 additions and 1081 deletions

View File

@ -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,
};