mirror of
https://github.com/oven-sh/bun
synced 2026-02-09 18:38:55 +00:00
Co-authored-by: Kai Tamkun <kai@tamkun.io> Co-authored-by: Jarred Sumner <jarred@jarredsumner.com> Co-authored-by: Ashcon Partovi <ashcon@partovi.net> Co-authored-by: Ciro Spaciari <ciro.spaciari@gmail.com> Co-authored-by: Dylan Conway <35280289+dylan-conway@users.noreply.github.com> Co-authored-by: 190n <190n@users.noreply.github.com>
13 lines
263 B
C++
13 lines
263 B
C++
#pragma once
|
|
|
|
// Helper functions used by JS to test that napi_ref, napi_wrap, and
|
|
// napi_external don't leak memory
|
|
|
|
#include "napi_with_version.h"
|
|
|
|
namespace napitests {
|
|
|
|
void register_leak_tests(Napi::Env env, Napi::Object exports);
|
|
|
|
} // namespace napitests
|