Skip to content

Commit b75053c

Browse files
committed
Fixed implicit any
1 parent a7467a1 commit b75053c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: src/harness/projectsRunner.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -479,7 +479,7 @@ class ProjectRunner extends RunnerBase {
479479

480480
it("Baseline of emitted result (" + moduleNameToString(moduleKind) + "): " + testCaseFileName, () => {
481481
if (testCase.baselineCheck) {
482-
const errs = [];
482+
const errs: Error[] = [];
483483
ts.forEach(compilerResult.outputFiles, outputFile => {
484484
// There may be multiple files with different baselines. Run all and report at the end, else
485485
// it stops copying the remaining emitted files from 'local/projectOutput' to 'local/project'.

0 commit comments

Comments
 (0)