diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2023-05-21 21:14:48 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-21 13:14:48 -0600 |
commit | 6255cf4642f97478fbf05f7b2cff1a1934364983 (patch) | |
tree | 14b05a8ed2856ef608909d4aeb747f7f1bf5f45b /test_napi/src/lib.rs | |
parent | 3e03865d89e3abf0755e6d3b8305632a5319fdfe (diff) |
chore: add tests for N-API symbol (#19205)
Diffstat (limited to 'test_napi/src/lib.rs')
-rw-r--r-- | test_napi/src/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test_napi/src/lib.rs b/test_napi/src/lib.rs index 8c467d307..8fa7d9ef6 100644 --- a/test_napi/src/lib.rs +++ b/test_napi/src/lib.rs @@ -23,6 +23,7 @@ pub mod primitives; pub mod promise; pub mod properties; pub mod strings; +pub mod symbol; pub mod tsfn; pub mod typedarray; @@ -160,6 +161,7 @@ unsafe extern "C" fn napi_register_module_v1( tsfn::init(env, exports); mem::init(env, exports); bigint::init(env, exports); + symbol::init(env, exports); init_cleanup_hook(env, exports); |