mirror of
https://github.com/denoland/deno.git
synced 2025-09-26 12:19:12 +00:00
fix(runtime): expose extensions_with_js
from WorkerOptions (#17109)
Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com>
This commit is contained in:
parent
97f280eb9b
commit
1d18b65edc
5 changed files with 48 additions and 4 deletions
|
@ -523,6 +523,7 @@ async fn create_main_worker_internal(
|
|||
inspect: ps.options.is_inspecting(),
|
||||
},
|
||||
extensions,
|
||||
extensions_with_js: vec![],
|
||||
startup_snapshot: Some(crate::js::deno_isolate_init()),
|
||||
unsafely_ignore_certificate_errors: ps
|
||||
.options
|
||||
|
@ -752,6 +753,7 @@ mod tests {
|
|||
inspect: false,
|
||||
},
|
||||
extensions: vec![],
|
||||
extensions_with_js: vec![],
|
||||
startup_snapshot: Some(crate::js::deno_isolate_init()),
|
||||
unsafely_ignore_certificate_errors: None,
|
||||
root_cert_store: None,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue