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>
14 lines
369 B
C++
14 lines
369 B
C++
#pragma once
|
|
|
|
// Functions that are used by tests implemented in module.js, rather than
|
|
// directly used by napi.test.ts, but are not complex enough or do not cleanly
|
|
// fit into a category to go in a separate C++ file
|
|
|
|
#include "napi_with_version.h"
|
|
|
|
namespace napitests {
|
|
|
|
void register_js_test_helpers(Napi::Env env, Napi::Object exports);
|
|
|
|
} // namespace napitests
|