Skip to content

Commit cccfb83

Browse files
committed
test: relax node runtime timeout budget
1 parent 0e3feb1 commit cccfb83

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

packages/secure-exec/tests/runtime-driver/node/runtime.test.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,9 @@ describe("runtime driver specific: node", () => {
4040
createNodeRuntimeDriverFactory();
4141
const runtime = new NodeRuntime({
4242
memoryLimit: 128,
43-
cpuTimeLimitMs: 250,
43+
// Keep the default runtime limit low enough to exercise node-only
44+
// construction options without depending on machine-specific startup jitter.
45+
cpuTimeLimitMs: 500,
4446
timingMitigation: "off",
4547
payloadLimits: {
4648
base64TransferBytes: 4096,

0 commit comments

Comments
 (0)