@ricsam/isolate-client 0.1.23 → 0.1.24
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/cjs/package.json
CHANGED
package/dist/mjs/connection.mjs
CHANGED
|
@@ -167,6 +167,7 @@ async function connect(options = {}) {
|
|
|
167
167
|
requestId,
|
|
168
168
|
options: {
|
|
169
169
|
memoryLimitMB: runtimeOptions.memoryLimitMB,
|
|
170
|
+
executionTimeout: runtimeOptions.executionTimeout,
|
|
170
171
|
cwd: runtimeOptions.cwd,
|
|
171
172
|
callbacks,
|
|
172
173
|
testEnvironment: testEnvironmentOption,
|
|
@@ -661,6 +662,7 @@ async function createRuntime(state, options = {}, namespaceId) {
|
|
|
661
662
|
requestId,
|
|
662
663
|
options: {
|
|
663
664
|
memoryLimitMB: options.memoryLimitMB,
|
|
665
|
+
executionTimeout: options.executionTimeout,
|
|
664
666
|
cwd: options.cwd,
|
|
665
667
|
callbacks,
|
|
666
668
|
testEnvironment: testEnvironmentOption,
|
|
@@ -990,7 +992,8 @@ async function createRuntime(state, options = {}, namespaceId) {
|
|
|
990
992
|
requestId: reqId,
|
|
991
993
|
isolateId,
|
|
992
994
|
code,
|
|
993
|
-
filename: options2?.filename
|
|
995
|
+
filename: options2?.filename,
|
|
996
|
+
executionTimeout: options2?.executionTimeout
|
|
994
997
|
};
|
|
995
998
|
await sendRequest(state, req);
|
|
996
999
|
},
|
|
@@ -1737,4 +1740,4 @@ export {
|
|
|
1737
1740
|
connect
|
|
1738
1741
|
};
|
|
1739
1742
|
|
|
1740
|
-
//# debugId=
|
|
1743
|
+
//# debugId=06A31C0AB117B3FE64756E2164756E21
|