Skip to content

Commit

Permalink
update limits tests
Browse files Browse the repository at this point in the history
  • Loading branch information
tlively committed Dec 11, 2024
1 parent c01e601 commit b030568
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/js-api/limits.any.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
// Static limits
const kJSEmbeddingMaxTypes = 1000000;
const kJSEmbeddingMaxFunctions = 1000000;
const kJSEmbeddingMaxImports = 100000;
const kJSEmbeddingMaxExports = 100000;
const kJSEmbeddingMaxImports = 1000000;
const kJSEmbeddingMaxExports = 1000000;
const kJSEmbeddingMaxGlobals = 1000000;
const kJSEmbeddingMaxDataSegments = 100000;

Expand Down

0 comments on commit b030568

Please sign in to comment.