@@ -433,14 +433,9 @@ def get_bdn_arguments(
433433 if runtime_type == "wasm" :
434434 category_exclusions += ["NoInterpreter" , "NoWASM" , "NoMono" ]
435435
436- wasm_args = ["--expose_wasm" ]
437- if javascript_engine == "v8" :
438- wasm_args += ["--module" ]
439-
440436 assert javascript_engine_path is not None
441437 bdn_arguments += [
442438 "--wasmEngine" , javascript_engine_path ,
443- f"\\ \" --wasmArgs={ ' ' .join (wasm_args )} \\ \" " ,
444439 "--cli" , "$HELIX_CORRELATION_PAYLOAD/dotnet/dotnet" ,
445440 "--wasmProcessTimeout" , "20" ,
446441 ]
@@ -454,14 +449,9 @@ def get_bdn_arguments(
454449 if runtime_type == "wasm_coreclr" :
455450 category_exclusions += ["NoWASM" , "NoWasmCoreCLR" , "NoMono" ]
456451
457- wasm_args = ["--expose_wasm" ]
458- if javascript_engine == "v8" :
459- wasm_args += ["--module" ]
460-
461452 assert javascript_engine_path is not None
462453 bdn_arguments += [
463454 "--wasmEngine" , javascript_engine_path ,
464- f"\\ \" --wasmArgs={ ' ' .join (wasm_args )} \\ \" " ,
465455 "--cli" , "$HELIX_CORRELATION_PAYLOAD/dotnet/dotnet" ,
466456 "--buildTimeout" , "1200" ,
467457 "--wasmProcessTimeout" , "20"
0 commit comments