Skip to content

Commit

Permalink
test: bump TypeScript instantiations cap to fix tests until we release
Browse files Browse the repository at this point in the history
  • Loading branch information
vkarpov15 committed Mar 4, 2024
1 parent 6ed3385 commit 6854607
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/tsc-diagnostics-check.js
Expand Up @@ -3,7 +3,7 @@
const fs = require('fs');

const stdin = fs.readFileSync(0).toString('utf8');
const maxInstantiations = isNaN(process.argv[2]) ? 120000 : parseInt(process.argv[2], 10);
const maxInstantiations = isNaN(process.argv[2]) ? 130000 : parseInt(process.argv[2], 10);

console.log(stdin);

Expand Down

0 comments on commit 6854607

Please sign in to comment.