diff options
Diffstat (limited to 'tests/integration/node_compat_tests.rs')
-rw-r--r-- | tests/integration/node_compat_tests.rs | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/integration/node_compat_tests.rs b/tests/integration/node_compat_tests.rs index c4c4ba1fa..9dfd07ab4 100644 --- a/tests/integration/node_compat_tests.rs +++ b/tests/integration/node_compat_tests.rs @@ -21,3 +21,17 @@ itest!(node_test_module_no_sanitizers { // exit_code: 123, http_server: true, }); + +itest!( + node_process_beforeexit_exit_events_emitted_without_listeners { + args: "run node/process_beforeexit_exit_events.ts", + output: "node/process_beforeexit_exit_events.out", + exit_code: 0, + } +); + +itest!(web_node_events_dispatched_in_correct_order { + args: "run node/events_order.ts", + output: "node/events_order.out", + exit_code: 0, +}); |