Skip to content

Commit 6854607

Browse files
committed
test: bump TypeScript instantiations cap to fix tests until we release #14328
1 parent 6ed3385 commit 6854607

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/tsc-diagnostics-check.js

+1-1
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]) ? 120000 : parseInt(process.argv[2], 10);
6+
const maxInstantiations = isNaN(process.argv[2]) ? 130000 : parseInt(process.argv[2], 10);
77

88
console.log(stdin);
99

0 commit comments

Comments
 (0)