Skip to content

Commit 17d1bd6

Browse files
committed
fix ts benchmark by bumping max instantiations
1 parent a3f914e commit 17d1bd6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/tsc-diagnostics-check.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
const fs = require('fs');
44

55
const stdin = fs.readFileSync(0).toString('utf8');
6-
const maxInstantiations = isNaN(process.argv[2]) ? 100000 : parseInt(process.argv[2], 10);
6+
const maxInstantiations = isNaN(process.argv[2]) ? 110000 : parseInt(process.argv[2], 10);
77

88
console.log(stdin);
99

0 commit comments

Comments
 (0)