diff options
Diffstat (limited to 'js/src/jit-test/tests/out-of-tree-apis.js')
-rw-r--r-- | js/src/jit-test/tests/out-of-tree-apis.js | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/out-of-tree-apis.js b/js/src/jit-test/tests/out-of-tree-apis.js new file mode 100644 index 0000000000..3615fba7f3 --- /dev/null +++ b/js/src/jit-test/tests/out-of-tree-apis.js @@ -0,0 +1,23 @@ +/** + * This tests APIs that are relied on by external consumers such as fuzzers, + * which could be broken if modified with regard only to in-tree code. + */ + +// getRealmConfiguration and getBuildConfiguration +// If API changes are planned here, be sure to notify anyone who is fuzzing SM. + +config = getRealmConfiguration(); + +assertEq(typeof config, "object"); + +for (const [key, value] of Object.entries(config)) { + assertEq(getRealmConfiguration(key), value); +} + +config = getBuildConfiguration(); + +assertEq(typeof config, "object"); + +for (const [key, value] of Object.entries(config)) { + assertEq(getBuildConfiguration(key), value); +} |