diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2021-10-11 09:45:02 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-11 09:45:02 -0400 |
commit | 426ebf854a82c63cdaa2413fbd1b005025dba95b (patch) | |
tree | 316a426e280db29745444e7606952c8c235c846a /runtime/js/99_main.js | |
parent | 668b400ff2fa5634f575e54f40ab1f0b78fcdf16 (diff) |
feat(unstable/test): imperative test steps API (#12190)
Diffstat (limited to 'runtime/js/99_main.js')
-rw-r--r-- | runtime/js/99_main.js | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/runtime/js/99_main.js b/runtime/js/99_main.js index 117200a28..32732923b 100644 --- a/runtime/js/99_main.js +++ b/runtime/js/99_main.js @@ -213,6 +213,9 @@ delete Object.prototype.__proto__; runtimeOptions.v8Version, runtimeOptions.tsVersion, ); + if (runtimeOptions.unstableFlag) { + internals.enableTestSteps(); + } build.setBuildInfo(runtimeOptions.target); util.setLogDebug(runtimeOptions.debugFlag, source); const prepareStackTrace = core.createPrepareStackTrace( |