change const to let

This commit is contained in:
Alexander
2019-08-10 10:10:04 +03:00
parent 371c3c630e
commit b33b90b559
+4 -2
View File
@@ -1,5 +1,7 @@
const runners: RunnerBase[] = [];
const iterations = 1;
/* eslint-disable prefer-const */
let runners: RunnerBase[] = [];
let iterations = 1;
/* eslint-enable prefer-const */
function runTests(runners: RunnerBase[]) {
for (let i = iterations; i > 0; i--) {