aboutsummaryrefslogtreecommitdiff
path: root/test/bun.js/bunExe.ts
diff options
context:
space:
mode:
Diffstat (limited to 'test/bun.js/bunExe.ts')
-rw-r--r--test/bun.js/bunExe.ts7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/bun.js/bunExe.ts b/test/bun.js/bunExe.ts
new file mode 100644
index 000000000..2f1a89cd2
--- /dev/null
+++ b/test/bun.js/bunExe.ts
@@ -0,0 +1,7 @@
+export function bunExe() {
+ if (Bun.version.includes("debug")) {
+ return "bun-debug";
+ }
+
+ return "bun";
+}