From a080acc1b46ce9915760ce5c818763c64be8dca1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Mon, 15 Apr 2024 19:08:33 +0100 Subject: refactor: move lifecycle events dispatch to Rust (#23358) This commit moves logic of dispatching lifecycle events ( "load", "beforeunload", "unload") to be triggered from Rust. Before that we were executing scripts from Rust, but now we are storing references to functions from "99_main.js" and calling them directly. Prerequisite for https://github.com/denoland/deno/issues/23342 --- cli/tools/test/mod.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'cli/tools/test') diff --git a/cli/tools/test/mod.rs b/cli/tools/test/mod.rs index 2c7241de1..2a406e560 100644 --- a/cli/tools/test/mod.rs +++ b/cli/tools/test/mod.rs @@ -654,15 +654,15 @@ async fn test_specifier_inner( // Ensure that there are no pending exceptions before we start running tests worker.run_up_to_duration(Duration::from_millis(0)).await?; - worker.dispatch_load_event(located_script_name!())?; + worker.dispatch_load_event()?; run_tests_for_worker(&mut worker, &specifier, &options, &fail_fast_tracker) .await?; // Ignore `defaultPrevented` of the `beforeunload` event. We don't allow the // event loop to continue beyond what's needed to await results. - worker.dispatch_beforeunload_event(located_script_name!())?; - worker.dispatch_unload_event(located_script_name!())?; + worker.dispatch_beforeunload_event()?; + worker.dispatch_unload_event()?; // Ensure all output has been flushed _ = sender.flush(); -- cgit v1.2.3